about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2021-09-12 19:03:03 +0200
committerMatthieu Coudron <mcoudron@hotmail.com>2021-09-12 19:03:09 +0200
commit1c4904092b2d824256ebba20cc9b7ba9c941e18a (patch)
treec7fb261b8a017d0e2eb6b12ee61ab5ab910fb91e /pkgs
parent56f823dd5c596ef6374f99a22ca63168ff6f6fb9 (diff)
neovim.tests: test vim-plug too
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/editors/neovim/tests.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/editors/neovim/tests.nix b/pkgs/applications/editors/neovim/tests.nix
index 5f4cda714a679..8e4fbbd8ccf75 100644
--- a/pkgs/applications/editors/neovim/tests.nix
+++ b/pkgs/applications/editors/neovim/tests.nix
@@ -84,6 +84,13 @@ rec {
     viAlias = true;
   };
 
+  nvim_with_plug = neovim.override {
+    extraName = "-with-plug";
+    configure.plug.plugins = with pkgs.vimPlugins; [
+      vim-go
+    ];
+  };
+
   # nixpkgs should detect that no wrapping is necessary
   nvimShouldntWrap = wrapNeovim2 "-should-not-wrap" nvimAutoDisableWrap;