about summary refs log tree commit diff
path: root/doc/languages-frameworks/vim.section.md
diff options
context:
space:
mode:
authorAmon Stopinšek <am-on@users.noreply.github.com>2021-12-09 17:23:52 +0000
committeram-on <am-on@users.noreply.github.com>2021-12-09 18:57:38 +0000
commit5f2db22eaec4207150fd4440b7fa4c1e2706bf90 (patch)
tree2fa15e574760a9d2e1862a4949dc09f4ee0847b4 /doc/languages-frameworks/vim.section.md
parent8e090252846052c690bc1fb2a4312b8f8be0bc01 (diff)
downloadnixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar.gz
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar.bz2
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar.lz
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar.xz
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.tar.zst
nixlib-5f2db22eaec4207150fd4440b7fa4c1e2706bf90.zip
doc: fix broken links
Links in documentation shouldn't point to dead ends.
Diffstat (limited to 'doc/languages-frameworks/vim.section.md')
-rw-r--r--doc/languages-frameworks/vim.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md
index cb5311fc95f1..4ffd6736e238 100644
--- a/doc/languages-frameworks/vim.section.md
+++ b/doc/languages-frameworks/vim.section.md
@@ -309,9 +309,9 @@ Sample output2:
 
 ## Adding new plugins to nixpkgs {#adding-new-plugins-to-nixpkgs}
 
-Nix expressions for Vim plugins are stored in [pkgs/misc/vim-plugins](/pkgs/misc/vim-plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`./update.py`](/pkgs/misc/vim-plugins/update.py). This creates a [generated.nix](/pkgs/misc/vim-plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](/pkgs/misc/vim-plugins/vim-plugin-names). Plugins are listed in alphabetical order in `vim-plugin-names` using the format `[github username]/[repository]@[gitref]`. For example https://github.com/scrooloose/nerdtree becomes `scrooloose/nerdtree`.
+Nix expressions for Vim plugins are stored in [pkgs/misc/vim-plugins](https://github.com/NixOS/nixpkgs/tree/master/pkgs/misc/vim-plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`./update.py`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/misc/vim-plugins/update.py). This creates a [generated.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/misc/vim-plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](https://github.com/NixOS/nixpkgs/blob/master/pkgs/misc/vim-plugins/vim-plugin-names). Plugins are listed in alphabetical order in `vim-plugin-names` using the format `[github username]/[repository]@[gitref]`. For example https://github.com/scrooloose/nerdtree becomes `scrooloose/nerdtree`.
 
-Some plugins require overrides in order to function properly. Overrides are placed in [overrides.nix](/pkgs/misc/vim-plugins/overrides.nix). Overrides are most often required when a plugin requires some dependencies, or extra steps are required during the build process. For example `deoplete-fish` requires both `deoplete-nvim` and `vim-fish`, and so the following override was added:
+Some plugins require overrides in order to function properly. Overrides are placed in [overrides.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/misc/vim-plugins/overrides.nix). Overrides are most often required when a plugin requires some dependencies, or extra steps are required during the build process. For example `deoplete-fish` requires both `deoplete-nvim` and `vim-fish`, and so the following override was added:
 
 ```nix
 deoplete-fish = super.deoplete-fish.overrideAttrs(old: {