From 41bd17e3cac9c5eba99cfd446bbde2ef121c1eba Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 27 Feb 2023 16:00:29 +0000 Subject: [PATCH] home: vim: migrate to 'gruvbox-nvim' I think this one will be more up-to-date with NeoVim evolutions, like LSP semantic tokens. --- home/vim/default.nix | 2 +- home/vim/init.vim | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/home/vim/default.nix b/home/vim/default.nix index e462f93..159c080 100644 --- a/home/vim/default.nix +++ b/home/vim/default.nix @@ -35,7 +35,7 @@ in plugins = with pkgs.vimPlugins; [ # Theming - vim-gruvbox8 # Nice dark theme + gruvbox-nvim # Nice dark theme lualine-nvim # A lua-based status line lualine-lsp-progress # Show progress for LSP servers diff --git a/home/vim/init.vim b/home/vim/init.vim index 05635d5..259c782 100644 --- a/home/vim/init.vim +++ b/home/vim/init.vim @@ -81,14 +81,10 @@ set mouse= " Set dark mode by default set background=dark -" Include plug-in integration -let g:gruvbox_plugin_hi_groups=1 -" Include filetype integration -let g:gruvbox_filetype_hi_groups=1 " 24 bit colors set termguicolors " Use my preferred colorscheme -colorscheme gruvbox8 +colorscheme gruvbox " }}} " Search parameters {{{