Add LspDiagnosticsUnderline highlight group

This commit is contained in:
Iron_E 2020-07-06 15:05:49 -04:00
parent 2895043012
commit 38489e5a28
No known key found for this signature in database
GPG Key ID: B0B37DE7EDC2335F
1 changed files with 4 additions and 2 deletions

View File

@ -208,7 +208,7 @@ local highlight_groups = {
Label = {bg=NONE, fg=pink, style='italic'}, Label = {bg=NONE, fg=pink, style='italic'},
Operator = {bg=NONE, fg=green_dark, style=NONE }, Operator = {bg=NONE, fg=green_dark, style=NONE },
Keyword = {bg=NONE, fg=turqoise, style='bold' }, Keyword = {bg=NONE, fg=turqoise, style='bold' },
Exception = {bg=NONE, fg=red, style='bold' }, Exception = {bg=NONE, fg=red_light, style='bold' },
--[[ 4.1.4. Metatextual Information]] --[[ 4.1.4. Metatextual Information]]
PreProc = {bg=NONE, fg=tan, style=NONE }, PreProc = {bg=NONE, fg=tan, style=NONE },
@ -301,7 +301,7 @@ local highlight_groups = {
SignColumn = {bg=NONE, fg=NONE, style=NONE }, SignColumn = {bg=NONE, fg=NONE, style=NONE },
--[[ 4.2.10. Messages]] --[[ 4.2.10. Messages]]
ErrorMsg = {bg=NONE, fg=red_light, style='bold' }, ErrorMsg = {bg=NONE, fg=red, style='bold' },
HintMsg = {bg=NONE, fg=magenta, style='bold' }, HintMsg = {bg=NONE, fg=magenta, style='bold' },
InfoMsg = {bg=NONE, fg=pink_light, style='bold' }, InfoMsg = {bg=NONE, fg=pink_light, style='bold' },
ModeMsg = {bg=NONE, fg=yellow, style=NONE }, ModeMsg = {bg=NONE, fg=yellow, style=NONE },
@ -325,6 +325,8 @@ local highlight_groups = {
LspDiagnosticsInformationFloating = {link='InfoMsg'}, LspDiagnosticsInformationFloating = {link='InfoMsg'},
LspDiagnosticsInformationSign = {link='InfoMsg' }, LspDiagnosticsInformationSign = {link='InfoMsg' },
LspDiagnosticsUnderline = {link='CocErrorHighlight'},
--[[ 4.2.12. Cursor ]] --[[ 4.2.12. Cursor ]]
Cursor = {bg=NONE, fg=NONE, style='inverse'}, Cursor = {bg=NONE, fg=NONE, style='inverse'},
CursorIM = {link='Cursor' }, CursorIM = {link='Cursor' },