diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 28c258d8..c8b6d08f 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -448,7 +448,7 @@ if version >= 700 " Screen line that the cursor is call s:HL('CursorLine', s:none, s:bg1) " Screen column that the cursor is - call s:HL('CursorLine', s:bg1, s:none, s:inverse) + hi! link CursorColumn CursorLine " Tab pages line filler call s:HL('TabLineFill', s:bg4, s:vim_bg, s:invert_tabline) @@ -478,8 +478,8 @@ hi! link SpecialKey GruvboxBg2 call s:HL('Visual', s:none, s:bg3, s:invert_selection) hi! link VisualNOS Visual -call s:HL('Search', s:bg0, s:yellow) -call s:HL('IncSearch', s:bg0, s:hls_cursor) +call s:HL('Search', s:yellow, s:bg0, s:inverse) +call s:HL('IncSearch', s:hls_cursor, s:bg0, s:inverse) call s:HL('Underlined', s:blue, s:none, s:underline)