Skip to content

Commit

Permalink
Introduced 'g:gruvbox_vert_split' option morhetz#31
Browse files Browse the repository at this point in the history
  • Loading branch information
morhetz authored and Splinter1984 committed Nov 2, 2023
1 parent 15b910f commit 090d3a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion colors/gruvbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ if !exists('g:gruvbox_sign_column')
let g:gruvbox_sign_column='dark1'
endif

if !exists('g:gruvbox_vert_split')
let g:gruvbox_vert_split='dark2'
endif

if !exists('g:gruvbox_invert_signs')
let g:gruvbox_invert_signs=0
endif
Expand Down Expand Up @@ -347,7 +351,7 @@ call s:HL('StatusLine', 'dark4', 'dark0', 'bold,inverse')
call s:HL('StatusLineNC', 'dark2', 'light4', 'bold,inverse')

" The column separating vertically split windows
call s:HL('VertSplit', 'light4', 'dark2')
call s:HL('VertSplit', 'light4', g:gruvbox_vert_split)

" Current match in wildmenu completion
call s:HL('WildMenu', 'blue', 'dark2', 'bold')
Expand Down

0 comments on commit 090d3a3

Please sign in to comment.