diff options
author | Wolfgang Müller | 2021-07-15 13:18:20 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-07-15 13:18:20 +0200 |
commit | 904e92d4dafb94265590b31ca55078bec325d5e1 (patch) | |
tree | 427910c82a5922acfa8f6d15b055607c2315bc02 | |
parent | 3e33e4bcb395f741e388eacebf2e35215cc00c7a (diff) | |
download | vim-summit-904e92d4dafb94265590b31ca55078bec325d5e1.tar.gz |
Reset the 'Error' highlight group
In 3e33e4b (Do not set default background color explicitly, 2021-07-05)
we stopped setting the background colours of highlight groups
explicitly. An unforeseen consequence for this is the fact that some
groups have a default background set by vim itself.
'Error' is one such group, and is now painted red on red, making it
quite an eyesore. Make sure to reset this group in order to remove any
default styles before we add our own.
Diffstat (limited to '')
-rw-r--r-- | colors/summit.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/colors/summit.vim b/colors/summit.vim index aea9088..ac36048 100644 --- a/colors/summit.vim +++ b/colors/summit.vim @@ -59,6 +59,7 @@ let s:violet_bg = "#e6e0f5" call s:reset("Title") call s:reset("Underlined") +call s:reset("Error") call s:hi ("Bold", "", "", "bold") call s:hi ("ColorColumn", "", s:base7, "none") |