1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-13 18:19:09 +08:00

Fix VertSplit of gruvbox

This commit is contained in:
wsdjeg 2017-04-16 19:00:24 +08:00
parent bf9be875f7
commit 899719b723

View File

@ -65,6 +65,7 @@ function! SpaceVim#autocmds#init() abort
endif
autocmd BufWritePost *.vim call s:generate_doc()
autocmd VimEnter * if !argc() | call SpaceVim#welcome() | endif
autocmd ColorScheme gruvbox call s:fix_gruvbox()
augroup END
endfunction
function! s:reload_touchpad_status() abort
@ -100,4 +101,8 @@ function! s:generate_doc() abort
endif
endfunction
function! s:fix_gruvbox() abort
hi VertSplit guibg=#282828 guifg=#181A1F
endfunction
" vim:set et sw=2: