nvim: colors/yolokai: Fix git diff highlight group
The previous setting resulted in atrocious highlighting in diffs.
This commit is contained in:
parent
1f165bbed4
commit
cece84f76e
1 changed files with 4 additions and 4 deletions
|
@ -150,10 +150,10 @@ local highlight_groups = {
|
||||||
Folded = {bg=darkblack, fg=warmgrey, style='italic'},
|
Folded = {bg=darkblack, fg=warmgrey, style='italic'},
|
||||||
|
|
||||||
--[[ 4.2.6. Diffs]]
|
--[[ 4.2.6. Diffs]]
|
||||||
DiffAdd = {bg=NONE, fg=darkgreen, style='inverse'},
|
DiffAdd = {bg=lightblack3, fg=darkgreen, style=NONE},
|
||||||
DiffChange = {bg=NONE, fg=yellow, style='inverse'},
|
DiffChange = {bg=lightblack3, fg=yellow, style=NONE},
|
||||||
DiffDelete = {bg=NONE, fg=red, style='inverse'},
|
DiffDelete = {bg=lightblack3, fg=red, style=NONE},
|
||||||
DiffText = {bg=NONE, fg=NONE, style='inverse'},
|
DiffText = {bg=lightblack3, fg=NONE, style=NONE},
|
||||||
|
|
||||||
--[[ 4.2.7. Searching]]
|
--[[ 4.2.7. Searching]]
|
||||||
IncSearch = {bg=NONE, fg=NONE, style='inverse' },
|
IncSearch = {bg=NONE, fg=NONE, style='inverse' },
|
||||||
|
|
Loading…
Reference in a new issue