diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 66246fba..c9d2c01d 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -512,8 +512,14 @@ call s:HL('IncSearch', s:hls_cursor, s:bg0, s:inverse) call s:HL('Underlined', s:blue, s:none, s:underline) -call s:HL('StatusLine', s:bg2, s:fg1, s:inverse) -call s:HL('StatusLineNC', s:bg1, s:fg4, s:inverse) +" See issue #465 +if has('nvim-0.11') + call s:HL('StatusLine', s:bg2, s:fg1) + call s:HL('StatusLineNC', s:bg1, s:fg4) +else + call s:HL('StatusLine', s:bg2, s:fg1, s:inverse) + call s:HL('StatusLineNC', s:bg1, s:fg4, s:inverse) +endif " The column separating vertically split windows call s:HL('VertSplit', s:bg3, s:vert_split)