diff options
author | Dani <dxuehu@gmail.com> | 2020-07-16 12:23:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 21:23:44 +0200 |
commit | 8a9754ce6c3451c541fa165144c164b0d92ae45e (patch) | |
tree | 749554581ab1c1c2cc20d27bbb139bfa4ae466f5 | |
parent | 6ff18463f2c45f329d865e176313b8bf4d311a5c (diff) | |
download | nord-vim-8a9754ce6c3451c541fa165144c164b0d92ae45e.tar.gz |
Add coc error/warning highlight (#213)
Added the coc.nvim [1] highlighting groups for errors and warnings using their respective foreground colors and the `undercurl` font style.
[1]: https://github.com/neoclide/coc.nvim
Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com>
Co-authored-by: Sven Greb <development@svengreb.de>
-rwxr-xr-x | colors/nord.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 6b00afb..8a2b033 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -561,6 +561,8 @@ call s:hi("ALEError" , s:nord11_gui, "", s:nord11_term, "", "undercurl", "") " Coc " > neoclide/coc +call s:hi("CocWarningHighlight" , s:nord13_gui, "", s:nord13_term, "", "undercurl", "") +call s:hi("CocErrorHighlight" , s:nord11_gui, "", s:nord11_term, "", "undercurl", "") call s:hi("CocWarningSign", s:nord13_gui, "", s:nord13_term, "", "", "") call s:hi("CocErrorSign" , s:nord11_gui, "", s:nord11_term, "", "", "") call s:hi("CocInfoSign" , s:nord8_gui, "", s:nord8_term, "", "", "") |