From fd2153700612aa2435533f9c28cf7fb386abf744 Mon Sep 17 00:00:00 2001 From: Malte Tammena Date: Sat, 19 Jun 2021 09:30:33 +0200 Subject: [PATCH] Fix basic nvim package --- system/modules/neovim.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/system/modules/neovim.nix b/system/modules/neovim.nix index 7b1ad37..cbcb21e 100644 --- a/system/modules/neovim.nix +++ b/system/modules/neovim.nix @@ -29,9 +29,7 @@ let my-gruvbox = with pkgs.vimPlugins; { plugin = gruvbox; config = '' - set termguicolors colorscheme gruvbox - hi ColorColumn guibg=#3c3836 ''; }; @@ -96,5 +94,5 @@ in { vimAlias = true; }; - #environment.systemPackages = [ fzf ]; + environment.systemPackages = with pkgs; [ ripgrep ]; }