diff options
author | Matt Singleton <matt@xcolour.net> | 2024-11-12 22:29:03 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2024-11-12 22:29:03 -0600 |
commit | 4178707d9ace763f034036d9ef20fbfae23b0538 (patch) | |
tree | 1dda1ebdf1c4f7c2f9e39ad10e35cf6b1ced3d23 /stow/vim/.vim | |
parent | f9d536b0f2ab9eab21037968341dc6ae33a047ae (diff) |
Diffstat (limited to 'stow/vim/.vim')
-rw-r--r-- | stow/vim/.vim/colors/mono.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stow/vim/.vim/colors/mono.vim b/stow/vim/.vim/colors/mono.vim index 5313523..36c02fe 100644 --- a/stow/vim/.vim/colors/mono.vim +++ b/stow/vim/.vim/colors/mono.vim @@ -118,7 +118,7 @@ call s:h("SpecialKey", {"fg": b:yellow}) call s:h("NonText", {"fg": b:light_black}) call s:h("Directory", {"fg": b:blue}) call s:h("ErrorMsg", {"fg": b:red}) -call s:h("IncSearch", {"bg": b:yellow_bg, "gui": "bold,underline", "cterm": "bold,underline"}) +call s:h("IncSearch", {"bg": b:yellow_bg, "fg": b:red_fg, "gui": "bold,underline", "cterm": "bold,underline"}) call s:h("Search", {"bg": b:yellow_bg}) call s:h("MoreMsg", {"fg": b:light_black, "cterm": "bold", "gui": "bold"}) hi! link ModeMsg MoreMsg @@ -164,7 +164,7 @@ call s:h("CursorColumn", {"bg": b:bg_subtle}) call s:h("CursorLine", {"fg": b:norm, "bg": b:bg_subtle}) call s:h("ColorColumn", {"bg": b:bg_subtle}) -call s:h("MatchParen", {"bg": b:bg_subtle, "fg": b:norm}) +call s:h("MatchParen", {"bg": b:bg_subtle, "fg": b:red}) call s:h("qfLineNr", {"fg": b:light_black}) call s:h("htmlH1", {"bg": b:bg, "fg": b:norm}) |