neovim: avoid aliased package

This commit is contained in:
Robert Helgesson 2022-12-04 13:13:19 +01:00
parent 15d94f3058
commit 848ae0d6bb
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,10 @@ with lib;
extraPython3Packages = (ps: with ps; [ jedi pynvim ]);
# 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 = ''
nvimFolder="home-files/.config/nvim"