nvim: colors/yolokai: Disable under curl for diagnostics
While we like having undercurl for diagnostics, most code bases are garbage and linters/LSP show warnings all over the place. Seeing the screen filled with red undercurls feels jarring. Disable them. Can't expect people to do things properly.
This commit is contained in:
parent
572ff25150
commit
59490d131a
1 changed files with 4 additions and 4 deletions
|
@ -194,10 +194,10 @@ local highlight_groups = {
|
||||||
DiagnosticSignInformation = 'InfoMsg' ,
|
DiagnosticSignInformation = 'InfoMsg' ,
|
||||||
DiagnosticSignHint = 'HintMsg' ,
|
DiagnosticSignHint = 'HintMsg' ,
|
||||||
|
|
||||||
DiagnosticUnderlineError = {style={'undercurl', color=red }},
|
DiagnosticUnderlineError = 'ErrorMsg' ,
|
||||||
DiagnosticUnderlineWarning = {style={'undercurl', color=pink }},
|
DiagnosticUnderlineWarning = 'WarningMsg' ,
|
||||||
DiagnosticUnderlineInformation = {style={'undercurl', color=orange }},
|
DiagnosticUnderlineInformation = 'InfoMsg' ,
|
||||||
DiagnosticUnderlineHint = {style={'undercurl', color=purple }},
|
DiagnosticUnderlineHint = 'HintMsg' ,
|
||||||
|
|
||||||
DiagnosticVirtualTextError = 'ErrorMsg' ,
|
DiagnosticVirtualTextError = 'ErrorMsg' ,
|
||||||
DiagnosticVirtualTextWarning = 'WarningMsg' ,
|
DiagnosticVirtualTextWarning = 'WarningMsg' ,
|
||||||
|
|
Loading…
Reference in a new issue