Loading pkgs/applications/editors/vim/plugins/aliases.nix +2 −0 Original line number Diff line number Diff line Loading @@ -75,6 +75,7 @@ mapAliases ( feline-nvim = throw "feline.nvim has been removed: upstream deleted repository. Consider using lualine"; # Added 2025-02-09 fugitive = vim-fugitive; floating-nvim = throw "floating.nvim has been removed: abandoned by upstream. Use popup-nvim or nui-nvim"; # Added 2024-11-26 fzfWrapper = fzf-wrapper; ghc-mod-vim = ghcmod-vim; ghcmod = ghcmod-vim; gleam-vim = throw "gleam.vim has been removed: its code was merged into vim."; # Added 2025-06-10 Loading @@ -94,6 +95,7 @@ mapAliases ( ipython = vim-ipython; latex-live-preview = vim-latex-live-preview; maktaba = vim-maktaba; minsnip-nvim = throw "the upstream repository got deleted"; # added 2025-08-30 multiple-cursors = vim-multiple-cursors; necoGhc = neco-ghc; # backwards compat, added 2014-10-18 neocomplete = neocomplete-vim; Loading pkgs/applications/editors/vim/plugins/default.nix +0 −1 Original line number Diff line number Diff line Loading @@ -55,7 +55,6 @@ let # If additional modifications to the build process are required, # add to ./overrides.nix. overrides = callPackage ./overrides.nix { inherit buildVimPlugin; inherit llvmPackages; }; Loading pkgs/applications/editors/vim/plugins/non-generated/ethersync/default.nix 0 → 100644 +14 −0 Original line number Diff line number Diff line { vimUtils, ethersync, }: vimUtils.buildVimPlugin rec { inherit (ethersync) pname version src meta ; sourceRoot = "${src.name}/nvim-plugin"; } pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix 0 → 100644 +14 −0 Original line number Diff line number Diff line { vimUtils, fzf, }: # Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim # plugin, since part of the fzf vim plugin is included in the main fzf # program. vimUtils.buildVimPlugin { inherit (fzf) src version; pname = "fzf"; postInstall = '' ln -s ${fzf}/bin/fzf $target/bin/fzf ''; } pkgs/applications/editors/vim/plugins/non-generated/hurl/default.nix 0 → 100644 +11 −0 Original line number Diff line number Diff line { vimUtils, hurl, }: vimUtils.buildVimPlugin { pname = "hurl"; inherit (hurl) version; # https://hurl.dev/ src = "${hurl.src}/contrib/vim"; } Loading
pkgs/applications/editors/vim/plugins/aliases.nix +2 −0 Original line number Diff line number Diff line Loading @@ -75,6 +75,7 @@ mapAliases ( feline-nvim = throw "feline.nvim has been removed: upstream deleted repository. Consider using lualine"; # Added 2025-02-09 fugitive = vim-fugitive; floating-nvim = throw "floating.nvim has been removed: abandoned by upstream. Use popup-nvim or nui-nvim"; # Added 2024-11-26 fzfWrapper = fzf-wrapper; ghc-mod-vim = ghcmod-vim; ghcmod = ghcmod-vim; gleam-vim = throw "gleam.vim has been removed: its code was merged into vim."; # Added 2025-06-10 Loading @@ -94,6 +95,7 @@ mapAliases ( ipython = vim-ipython; latex-live-preview = vim-latex-live-preview; maktaba = vim-maktaba; minsnip-nvim = throw "the upstream repository got deleted"; # added 2025-08-30 multiple-cursors = vim-multiple-cursors; necoGhc = neco-ghc; # backwards compat, added 2014-10-18 neocomplete = neocomplete-vim; Loading
pkgs/applications/editors/vim/plugins/default.nix +0 −1 Original line number Diff line number Diff line Loading @@ -55,7 +55,6 @@ let # If additional modifications to the build process are required, # add to ./overrides.nix. overrides = callPackage ./overrides.nix { inherit buildVimPlugin; inherit llvmPackages; }; Loading
pkgs/applications/editors/vim/plugins/non-generated/ethersync/default.nix 0 → 100644 +14 −0 Original line number Diff line number Diff line { vimUtils, ethersync, }: vimUtils.buildVimPlugin rec { inherit (ethersync) pname version src meta ; sourceRoot = "${src.name}/nvim-plugin"; }
pkgs/applications/editors/vim/plugins/non-generated/fzf-wrapper/default.nix 0 → 100644 +14 −0 Original line number Diff line number Diff line { vimUtils, fzf, }: # Mainly used as a dependency for fzf-vim. Wraps the fzf program as a vim # plugin, since part of the fzf vim plugin is included in the main fzf # program. vimUtils.buildVimPlugin { inherit (fzf) src version; pname = "fzf"; postInstall = '' ln -s ${fzf}/bin/fzf $target/bin/fzf ''; }
pkgs/applications/editors/vim/plugins/non-generated/hurl/default.nix 0 → 100644 +11 −0 Original line number Diff line number Diff line { vimUtils, hurl, }: vimUtils.buildVimPlugin { pname = "hurl"; inherit (hurl) version; # https://hurl.dev/ src = "${hurl.src}/contrib/vim"; }