home: vim: migrate to 'gruvbox-nvim'

I think this one will be more up-to-date with NeoVim evolutions, like
LSP semantic tokens.
This commit is contained in:
Bruno BELANYI 2023-02-27 16:00:29 +00:00
parent a29deaa9bc
commit 41bd17e3ca
2 changed files with 2 additions and 6 deletions

View file

@ -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

View file

@ -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 {{{