neovim.tests: test vim-plug too

This commit is contained in:
Matthieu Coudron 2021-09-12 19:03:03 +02:00
parent 56f823dd5c
commit 1c4904092b

View File

@ -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;