From 1dbcc5c062abbd56377a9dcdbfe810011358921a Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Fri, 2 Feb 2024 23:33:39 -0500 Subject: [PATCH] changed vim theme --- users/tacocat/programs/vim.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ''; };