diff --git a/users/tacocat/programs/vim.nix b/users/tacocat/programs/vim.nix index 6002eb5..51441cb 100644 --- a/users/tacocat/programs/vim.nix +++ b/users/tacocat/programs/vim.nix @@ -2,7 +2,6 @@ programs.vim = { enable = true; settings = { - background = "dark"; copyindent = true; expandtab = false; hidden = true; @@ -18,6 +17,8 @@ plugins = with pkgs.vimPlugins; [ onedark-vim everforest + gruvbox + vim-colors-solarized terminus vim-fugitive vim-gitgutter @@ -25,8 +26,9 @@ extraConfig = '' set scrolloff=5 set hlsearch + set background=dark set signcolumn=yes - colorscheme everforest + colorscheme gruvbox set updatetime=100 ''; };