about summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins
diff options
context:
space:
mode:
authorDarwin Corn <me@ndarwincorn.me>2020-07-18 17:01:56 -0700
committerDarwin Corn <me@ndarwincorn.me>2020-07-18 17:01:56 -0700
commitef0df90c504e28b2c8a575a84218f90a98965574 (patch)
treeb6a698922a10724364c3d35f19603eb16c2da54f /pkgs/misc/vim-plugins
parentf826149d9c6988b331f4a66fb7f5e523617befe0 (diff)
downloadnixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar.gz
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar.bz2
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar.lz
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar.xz
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.tar.zst
nixlib-ef0df90c504e28b2c8a575a84218f90a98965574.zip
vimPlugins: add overrides for new ncm2 plugin deps
Diffstat (limited to 'pkgs/misc/vim-plugins')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index d38939349003..a016207a02d9 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -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 ];
   });