Skip to content

Commit

Permalink
Add nvim-lsp support (#198)
Browse files Browse the repository at this point in the history
Added highlighting support for the build-in Neovim language server [1] using the coc.nvim [2] groups as reference.

[1]: https://github.com/neovim/nvim-lsp
[2]: https://github.com/neoclide/coc.nvim
  • Loading branch information
alexanderjeurissen authored and arcticicestudio committed Jun 16, 2020
1 parent afa1c93 commit fab33d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions colors/nord.vim
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,13 @@ call s:hi("CocErrorSign" , s:nord11_gui, "", s:nord11_term, "", "", "")
call s:hi("CocWarningSign", s:nord13_gui, "", s:nord13_term, "", "", "")
call s:hi("CocErrorSign" , s:nord11_gui, "", s:nord11_term, "", "", "")

" Nvim LSP
" > neovim/nvim-lsp
call s:hi("LSPDiagnosticsWarning", s:nord13_gui, "", s:nord13_term, "", "", "")
call s:hi("LSPDiagnosticsError" , s:nord11_gui, "", s:nord11_term, "", "", "")
call s:hi("LSPDiagnosticsInformation" , s:nord8_gui, "", s:nord8_term, "", "", "")
call s:hi("LSPDiagnosticsHint" , s:nord10_gui, "", s:nord10_term, "", "", "")

" GitGutter
" > airblade/vim-gitgutter
call s:hi("GitGutterAdd", s:nord14_gui, "", s:nord14_term, "", "", "")
Expand Down

0 comments on commit fab33d1

Please sign in to comment.