Skip to content

Commit

Permalink
vimPlugins: consolidate non generated plugins
Browse files Browse the repository at this point in the history
We dont want to keep polluting the plugins folder. Moving to a folder
for non-generated plugins that only exist in overrides to be part of the
package set.
  • Loading branch information
khaneliman committed Dec 20, 2024
1 parent bb8ca65 commit 206e964
Show file tree
Hide file tree
Showing 17 changed files with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions pkgs/applications/editors/vim/plugins/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ in
];
};

avante-nvim = callPackage ./avante-nvim { };
avante-nvim = callPackage ./non-generated/avante-nvim { };

aw-watcher-vim = super.aw-watcher-vim.overrideAttrs {
patches = [
Expand Down Expand Up @@ -244,7 +244,7 @@ in
meta.homepage = "https://github.com/sblumentritt/bitbake.vim/";
};

blink-cmp = callPackage ./blink-cmp { };
blink-cmp = callPackage ./non-generated/blink-cmp { };

bluloco-nvim = super.bluloco-nvim.overrideAttrs {
dependencies = [ self.lush-nvim ];
Expand Down Expand Up @@ -655,7 +655,7 @@ in
nvimRequireCheck = "codeium";
};

codesnap-nvim = callPackage ./codesnap-nvim { };
codesnap-nvim = callPackage ./non-generated/codesnap-nvim { };

codewindow-nvim = super.codewindow-nvim.overrideAttrs {
dependencies = [ self.nvim-treesitter ];
Expand Down Expand Up @@ -767,7 +767,7 @@ in
nvimRequireCheck = "coq";
};

cord-nvim = callPackage ./cord-nvim { };
cord-nvim = callPackage ./non-generated/cord-nvim { };

cornelis = super.cornelis.overrideAttrs {
dependencies = [ self.vim-textobj-user ];
Expand Down Expand Up @@ -1280,7 +1280,7 @@ in
nvimRequireCheck = "kulala";
};

LanguageClient-neovim = callPackage ./LanguageClient-neovim { };
LanguageClient-neovim = callPackage ./non-generated/LanguageClient-neovim { };

LazyVim = super.LazyVim.overrideAttrs {
# Any other dependency is optional
Expand Down Expand Up @@ -1608,7 +1608,7 @@ in
];
};

moveline-nvim = callPackage ./moveline-nvim { };
moveline-nvim = callPackage ./non-generated/moveline-nvim { };

multicursors-nvim = super.multicursors-nvim.overrideAttrs {
dependencies = with self; [
Expand Down Expand Up @@ -2187,7 +2187,7 @@ in
nvimSkipModule = "snippets.utils.cmp";
};

nvim-spectre = callPackage ./nvim-spectre { };
nvim-spectre = callPackage ./non-generated/nvim-spectre { };

nvim-surround = super.nvim-surround.overrideAttrs {
# Optional treesitter integration
Expand Down Expand Up @@ -2559,7 +2559,7 @@ in
dependencies = [ self.nui-nvim ];
};

sg-nvim = callPackage ./sg-nvim { };
sg-nvim = callPackage ./non-generated/sg-nvim { };

skim = buildVimPlugin {
pname = "skim";
Expand Down Expand Up @@ -2618,7 +2618,7 @@ in
];
};

sniprun = callPackage ./sniprun { };
sniprun = callPackage ./non-generated/sniprun { };

# The GitHub repository returns 404, which breaks the update script
Spacegray-vim = buildVimPlugin {
Expand Down Expand Up @@ -3162,7 +3162,7 @@ in
passthru.python3Dependencies = ps: with ps; [ beancount ];
};

vim-clap = callPackage ./vim-clap { };
vim-clap = callPackage ./non-generated/vim-clap { };

vim-codefmt = super.vim-codefmt.overrideAttrs {
dependencies = [ self.vim-maktaba ];
Expand Down Expand Up @@ -3297,7 +3297,7 @@ in
'';
};

vim-markdown-composer = callPackage ./vim-markdown-composer { };
vim-markdown-composer = callPackage ./non-generated/vim-markdown-composer { };

vim-matchup = super.vim-matchup.overrideAttrs {
# Optional treesitter integration
Expand Down

0 comments on commit 206e964

Please sign in to comment.