Make diagnostic text more subtle while keeping error and warnings brighter
This commit is contained in:
parent
f3ae0c07c3
commit
dacf111968
1 changed files with 12 additions and 2 deletions
|
@ -144,8 +144,8 @@ M.highlights = function()
|
||||||
Underlined = { underline = true },
|
Underlined = { underline = true },
|
||||||
Ignore = { },
|
Ignore = { },
|
||||||
Todo = { fg = C.purple, bold = true },
|
Todo = { fg = C.purple, bold = true },
|
||||||
Error = { fg = C.dim_red },
|
Error = { fg = C.red },
|
||||||
Warning = { fg = C.dim_yellow},
|
Warning = { fg = C.yellow},
|
||||||
Information = { fg = C.blue },
|
Information = { fg = C.blue },
|
||||||
Hint = { fg = C.fg4 },
|
Hint = { fg = C.fg4 },
|
||||||
},
|
},
|
||||||
|
@ -221,6 +221,16 @@ M.highlights = function()
|
||||||
DiagnosticError = { link = 'Error' },
|
DiagnosticError = { link = 'Error' },
|
||||||
DiagnosticInfo = { link = 'Information' },
|
DiagnosticInfo = { link = 'Information' },
|
||||||
DiagnosticHint = { link = 'Hint' },
|
DiagnosticHint = { link = 'Hint' },
|
||||||
|
|
||||||
|
DiagnosticVirtualTextWarn = { fg = C.dim_yellow },
|
||||||
|
DiagnosticVirtualTextError = { fg = C.dim_red },
|
||||||
|
DiagnosticVirtualTextInfo = { fg = C.dim_blue },
|
||||||
|
DiagnosticVirtualTextHint = { fg = C.gray },
|
||||||
|
|
||||||
|
DiagnosticSignWarn = { link = 'DiagnosticVirtualTextWarn' },
|
||||||
|
DiagnosticSignError = { link = 'DiagnosticVirtualTextError' },
|
||||||
|
DiagnosticSignInfo = { link = 'DiagnosticVirtualTextInfo' },
|
||||||
|
DiagnosticSignHint = { link = 'DiagnosticVirtualTextHint' },
|
||||||
},
|
},
|
||||||
|
|
||||||
pum = {
|
pum = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue