Skip to content

Commit

Permalink
fix(vim): invisible DiffText when cursorline is set
Browse files Browse the repository at this point in the history
Similar to
80331fb
  • Loading branch information
lekemula committed Sep 20, 2024
1 parent 559b4a9 commit a2bb86e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion colors/gruvbox-material.vim
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ endif
call gruvbox_material#highlight('DiffAdd', s:palette.none, s:palette.bg_diff_green)
call gruvbox_material#highlight('DiffChange', s:palette.none, s:palette.bg_diff_blue)
call gruvbox_material#highlight('DiffDelete', s:palette.none, s:palette.bg_diff_red)
call gruvbox_material#highlight('DiffText', s:palette.bg0, s:palette.blue)
if has('nvim')
call gruvbox_material#highlight('DiffText', s:palette.bg0, s:palette.blue)
else
call gruvbox_material#highlight('DiffText', s:palette.blue, s:palette.bg0, 'reverse')
endif
call gruvbox_material#highlight('Directory', s:palette.green, s:palette.none)
call gruvbox_material#highlight('ErrorMsg', s:palette.red, s:palette.none, 'bold,underline')
if s:configuration.ui_contrast ==# 'low'
Expand Down

0 comments on commit a2bb86e

Please sign in to comment.