mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Apply the theme to ale diagnostics correctly
This commit is contained in:
parent
05e2fb88d5
commit
fd61c896f7
1 changed files with 12 additions and 3 deletions
|
@ -281,9 +281,18 @@ endfun
|
|||
hi! link SignifyLineChange DiffChange
|
||||
hi! link SignifyLineDelete DiffDelete
|
||||
|
||||
"ale
|
||||
call s:C("ALEErrorSign",g:cRed,"","standout")
|
||||
call s:C("ALEWarningSign",g:cYellow,"","standout")
|
||||
"diagnostics
|
||||
call s:C("ALEError",g:cDarkRed,"","")
|
||||
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: {{{
|
||||
|
|
Loading…
Reference in a new issue