home: vim: switch back to gruvbox theme
Onedark is too annoying to deal with, and I still like gruvbox's colors best.
This commit is contained in:
parent
4be248ee22
commit
cdabd4fb5d
|
@ -31,10 +31,7 @@ in
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
# Theming
|
# Theming
|
||||||
lightline-vim # Fancy status bar
|
lightline-vim # Fancy status bar
|
||||||
{
|
vim-gruvbox8 # Nice dark theme
|
||||||
plugin = onedark-vim; # Nice dark theme
|
|
||||||
optional = true; # Needs to be `packadd`-ed manually...
|
|
||||||
}
|
|
||||||
|
|
||||||
# tpope essentials
|
# tpope essentials
|
||||||
vim-commentary # Easy comments
|
vim-commentary # Easy comments
|
||||||
|
|
|
@ -68,10 +68,12 @@ set timeoutlen=500
|
||||||
" Set dark mode by default
|
" Set dark mode by default
|
||||||
set background=dark
|
set background=dark
|
||||||
|
|
||||||
" Load it manually because of autoload functions...
|
" Include plug-in integration
|
||||||
packadd! onedark-vim
|
let g:gruvbox_plugin_hi_groups=1
|
||||||
" Use onedark
|
" Include filetype integration
|
||||||
colorscheme onedark
|
let g:gruvbox_filetype_hi_groups=1
|
||||||
|
" Use my preferred colorscheme
|
||||||
|
colorscheme gruvbox8
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
" Search parameters {{{
|
" Search parameters {{{
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
let g:lightline={}
|
let g:lightline={}
|
||||||
|
|
||||||
" Use the wombat colorscheme
|
" Use the wombat colorscheme
|
||||||
let g:lightline.colorscheme='onedark'
|
let g:lightline.colorscheme='wombat'
|
||||||
|
|
||||||
" Status-line for active buffer
|
" Status-line for active buffer
|
||||||
let g:lightline.active={
|
let g:lightline.active={
|
||||||
|
|
Loading…
Reference in a new issue