mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
vimPlugins: add overrides for new ncm2 plugin deps
This commit is contained in:
parent
f826149d9c
commit
ef0df90c50
1 changed files with 12 additions and 0 deletions
|
@ -440,6 +440,18 @@ self: super: {
|
|||
passthru.python3Dependencies = ps: with ps; [ jedi ];
|
||||
});
|
||||
|
||||
ncm2-neoinclude = super.ncm2-neoinclude.overrideAttrs(old: {
|
||||
dependencies = with super; [ neoinclude-vim ];
|
||||
});
|
||||
|
||||
ncm2-neosnippet = super.ncm2-neosnippet.overrideAttrs(old: {
|
||||
dependencies = with super; [ neosnippet-vim ];
|
||||
});
|
||||
|
||||
ncm2-syntax = super.ncm2-syntax.overrideAttrs(old: {
|
||||
dependencies = with super; [ neco-syntax ];
|
||||
});
|
||||
|
||||
ncm2-ultisnips = super.ncm2-ultisnips.overrideAttrs(old: {
|
||||
dependencies = with super; [ ultisnips ];
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue