nvim: colors/yolokai: Enable undercurl for underline diagnostic

This effectively reverts commit 59490d1.
This commit is contained in:
Sanchayan Maity 2022-12-10 12:37:10 +05:30
parent b60afcf0e9
commit 0c7d4372d1
1 changed files with 4 additions and 4 deletions

View File

@ -188,10 +188,10 @@ local highlight_groups = {
DiagnosticSignInfo = 'InfoMsg' ,
DiagnosticSignHint = 'HintMsg' ,
DiagnosticUnderlineError = 'ErrorMsg' ,
DiagnosticUnderlineWarn = 'WarningMsg',
DiagnosticUnderlineInfo = 'InfoMsg' ,
DiagnosticUnderlineHint = 'HintMsg' ,
DiagnosticUnderlineError = {style={'undercurl', color=red }},
DiagnosticUnderlineWarn = {style={'undercurl', color=pink }},
DiagnosticUnderlineInfo = {style={'undercurl', color=orange }},
DiagnosticUnderlineHint = {style={'undercurl', color=purple }},
DiagnosticVirtualTextError = 'ErrorMsg' ,
DiagnosticVirtualTextWarn = 'WarningMsg',