Apply the theme to ale diagnostics correctly

This commit is contained in:
Kevin MacMartin 2024-03-06 17:40:15 -05:00
parent 05e2fb88d5
commit fd61c896f7

View file

@ -281,9 +281,18 @@ endfun
hi! link SignifyLineChange DiffChange hi! link SignifyLineChange DiffChange
hi! link SignifyLineDelete DiffDelete hi! link SignifyLineDelete DiffDelete
"ale "diagnostics
call s:C("ALEErrorSign",g:cRed,"","standout") call s:C("ALEError",g:cDarkRed,"","")
call s:C("ALEWarningSign",g:cYellow,"","standout") call s:C("ALEWarning",g:cDarkYellow,"","")
call s:C("ALEInfo",g:cDarkBlue,"","")
call s:C("DiagnosticError",g:cDarkRed,"","italic")
call s:C("DiagnosticWarn",g:cDarkYellow,"","italic")
call s:C("DiagnosticInfo",g:cDarkBlue,"","italic")
call s:C("DiagnosticHint",g:cGray3,"","italic")
call s:C("DiagnosticOk",g:cWhite,"","italic")
call s:C("DiagnosticDeprecated",g:cGray1,"","italic")
call s:C("DiagnosticUnnecessary",g:cGray1,"","italic")
"}}} "}}}
"TREESITTER: {{{ "TREESITTER: {{{