From 38489e5a2864e74afbfd3c5054f26dee647d1067 Mon Sep 17 00:00:00 2001 From: Iron_E Date: Mon, 6 Jul 2020 15:05:49 -0400 Subject: [PATCH] Add LspDiagnosticsUnderline highlight group --- colors/highlite.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/colors/highlite.vim b/colors/highlite.vim index c044643..98d3605 100644 --- a/colors/highlite.vim +++ b/colors/highlite.vim @@ -208,7 +208,7 @@ local highlight_groups = { Label = {bg=NONE, fg=pink, style='italic'}, Operator = {bg=NONE, fg=green_dark, style=NONE }, 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]] PreProc = {bg=NONE, fg=tan, style=NONE }, @@ -301,7 +301,7 @@ local highlight_groups = { SignColumn = {bg=NONE, fg=NONE, style=NONE }, --[[ 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' }, InfoMsg = {bg=NONE, fg=pink_light, style='bold' }, ModeMsg = {bg=NONE, fg=yellow, style=NONE }, @@ -325,6 +325,8 @@ local highlight_groups = { LspDiagnosticsInformationFloating = {link='InfoMsg'}, LspDiagnosticsInformationSign = {link='InfoMsg' }, + LspDiagnosticsUnderline = {link='CocErrorHighlight'}, + --[[ 4.2.12. Cursor ]] Cursor = {bg=NONE, fg=NONE, style='inverse'}, CursorIM = {link='Cursor' },