nix: Move neovim to separate file

This commit is contained in:
Alexander Kobjolke 2021-07-27 21:35:07 +02:00
parent f91e92c13c
commit dd30bcbb25
2 changed files with 17 additions and 15 deletions

16
home/modules/nvim.nix Normal file
View file

@ -0,0 +1,16 @@
pkgs:
{
enable = true;
vimAlias = true;
extraConfig = ''
set nowrap
'';
plugins = with pkgs.vimPlugins; [
vim-nix
indentLine
indent-blankline-nvim
];
}