neovim: avoid aliased package

(cherry picked from commit 848ae0d6bb)
This commit is contained in:
Robert Helgesson 2022-12-04 13:13:19 +01:00
parent 3c3af4bbff
commit e704ef9ec7
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -14,7 +14,10 @@ with lib;
extraPython3Packages = (ps: with ps; [ jedi pynvim ]); extraPython3Packages = (ps: with ps; [ jedi pynvim ]);
# plugins without associated config should not trigger the creation of init.vim # plugins without associated config should not trigger the creation of init.vim
plugins = with pkgs.vimPlugins; [ fugitive ({ plugin = vim-sensible; }) ]; plugins = with pkgs.vimPlugins; [
vim-fugitive
({ plugin = vim-sensible; })
];
}; };
nmt.script = '' nmt.script = ''
nvimFolder="home-files/.config/nvim" nvimFolder="home-files/.config/nvim"