Moving more stuff into modules
This commit is contained in:
parent
e24d7c1790
commit
4954008d13
8 changed files with 306 additions and 525 deletions
10
home-manager/modules/neovim.nix
Normal file
10
home-manager/modules/neovim.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ ... }: {
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
plugins = with pkgs.vimPlugins; [ vim-airline neoformat vim-monokai ];
|
||||
settings = { ignorecase = true; };
|
||||
extraConfig = ''
|
||||
set mouse=a
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue