Fix basic nvim package

This commit is contained in:
Malte Tammena 2021-06-19 09:30:33 +02:00
parent 5bc1db9f50
commit fd21537006

View file

@ -29,9 +29,7 @@ let
my-gruvbox = with pkgs.vimPlugins; { my-gruvbox = with pkgs.vimPlugins; {
plugin = gruvbox; plugin = gruvbox;
config = '' config = ''
set termguicolors
colorscheme gruvbox colorscheme gruvbox
hi ColorColumn guibg=#3c3836
''; '';
}; };
@ -96,5 +94,5 @@ in {
vimAlias = true; vimAlias = true;
}; };
#environment.systemPackages = [ fzf ]; environment.systemPackages = with pkgs; [ ripgrep ];
} }