Browse Source

fix highlight color for ALEWarningSign, also set it for ALEErrorSign, ALEInfoSign (#317)

pull/320/head
Artyom Andreev 2 years ago
committed by GitHub
parent
commit
b6b5ffe31a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      colors/onedark.vim

3
colors/onedark.vim

@ -577,6 +577,9 @@ call s:h("GitGutterDelete", { "fg": s:red })
call s:h("ALEError", { "fg": s:red, "gui": "underline", "cterm": "underline" })
call s:h("ALEWarning", { "fg": s:yellow, "gui": "underline", "cterm": "underline" })
call s:h("ALEInfo", { "gui": "underline", "cterm": "underline" })
call s:h("ALEErrorSign", { "fg": s:red })
call s:h("ALEWarningSign", { "fg": s:yellow })
call s:h("ALEInfoSign", { })
" easymotion/vim-easymotion
call s:h("EasyMotionTarget", { "fg": s:red, "gui": "bold", "cterm": "bold" })

Loading…
Cancel
Save