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