style(colors): make definitions more compact

The groups defined were tabularized to a fault. I think this undoes some
of that.
This commit is contained in:
Iron-E 2020-12-17 13:58:56 -05:00
parent 3bced25e47
commit 527245d736
No known key found for this signature in database
GPG Key ID: 19B71B7B7B021D22
1 changed files with 209 additions and 209 deletions

View File

@ -345,8 +345,8 @@ local highlight_groups = {
--[[ 4.2.7. Searching]]
IncSearch = {style='inverse'},
Search = {style={'underline', color=white}},
MatchParen = {fg=green, style={'bold', 'underline'}},
Search = {style={'underline', color=white}},
--[[ 4.2.8. Spelling]]
SpellBad = {style={'undercurl', color=red}},
@ -736,9 +736,9 @@ local highlight_groups = {
JumpMotion = 'EasyMotion',
--[[ 4.4.4. vim-gitgutter / vim-signify ]]
GitGutterAdd = {fg=green},
GitGutterChange = {fg=yellow},
GitGutterDelete = {fg=red},
GitGutterAdd = {fg = green},
GitGutterChange = {fg = yellow},
GitGutterDelete = {fg = red},
GitGutterChangeDelete = {fg=orange},
SignifySignAdd = 'GitGutterAdd',