mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
neovim: avoid aliased package
This commit is contained in:
parent
15d94f3058
commit
848ae0d6bb
1 changed files with 4 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue