From c24e6e7ff7ade35c272070947a4515bc6a4fb225 Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Mon, 12 Feb 2024 15:25:30 -0500 Subject: [PATCH] neovim theme --- users/tacocat/neovim/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/users/tacocat/neovim/default.nix b/users/tacocat/neovim/default.nix index 49e10bf..4c0b1b2 100644 --- a/users/tacocat/neovim/default.nix +++ b/users/tacocat/neovim/default.nix @@ -3,7 +3,7 @@ enable = true; colorschemes.base16 = { enable = true; - colorscheme = "solarized-dark"; + colorscheme = "darkmoss"; setUpBar = false; }; clipboard = { @@ -19,25 +19,15 @@ scrolloff = 5; autoindent = true; copyindent = true; + signcolumn = "yes"; }; plugins = { lightline = { enable = true; - # colorscheme = "16color"; }; gitgutter = { enable = true; - # signs = { - # added = "█|"; - # modified = "█⫶"; - # modifiedRemoved = "█▟"; - # removed = "█▁"; - # removedFirstLine = "█▔"; - # }; }; }; - extraPlugins = with pkgs.vimPlugins; [ - vim-airline-themes - ]; }; }