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' ,
|
||||
DiagnosticSignHint = 'HintMsg' ,
|
||||
|
||||
DiagnosticUnderlineError = {style={'undercurl', color=red }},
|
||||
DiagnosticUnderlineWarning = {style={'undercurl', color=pink }},
|
||||
DiagnosticUnderlineInformation = {style={'undercurl', color=orange }},
|
||||
DiagnosticUnderlineHint = {style={'undercurl', color=purple }},
|
||||
DiagnosticUnderlineError = 'ErrorMsg' ,
|
||||
DiagnosticUnderlineWarning = 'WarningMsg' ,
|
||||
DiagnosticUnderlineInformation = 'InfoMsg' ,
|
||||
DiagnosticUnderlineHint = 'HintMsg' ,
|
||||
|
||||
DiagnosticVirtualTextError = 'ErrorMsg' ,
|
||||
DiagnosticVirtualTextWarning = 'WarningMsg' ,
|
||||
|
|
Loading…
Reference in a new issue