diff options
author | Jan Steinke <jan.steinke@gmail.com> | 2021-09-05 21:10:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-05 21:10:16 +0200 |
commit | 02ddfadb9e200221f141bcd99ea055e533d67ec0 (patch) | |
tree | d84eac5f57f5ea4af289a21a1d7d4a5cd526a93f | |
parent | 8d8b9bf86bbc715a055b54cb53f0643fd664caa4 (diff) | |
download | nord-vim-02ddfadb9e200221f141bcd99ea055e533d67ec0.tar.gz |
add support for Lsp codelens (#266)
Support for LSP code lenses
Before LSP code lenses [1] where code lenses were highlighted with the
default color which has been changed to make it less visually intrusive,
like other UI related elements, i.e. messages of linters.
[1]: https://neovim.io/doc/user/lsp.html#lsp-highlight-codelens
GH-266
Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com>
-rwxr-xr-x | colors/nord.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index d0a91e8..69b61de 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -574,6 +574,7 @@ call s:hi("CocHintSign" , s:nord10_gui, "", s:nord10_term, "", "", "") " Neovim LSP " > neovim/nvim-lspconfig +call s:hi("LspCodeLens", s:nord3_gui_bright, "", s:nord3_term, "", "", "") call s:hi("LspDiagnosticsDefaultWarning", s:nord13_gui, "", s:nord13_term, "", "", "") call s:hi("LspDiagnosticsDefaultError" , s:nord11_gui, "", s:nord11_term, "", "", "") call s:hi("LspDiagnosticsDefaultInformation" , s:nord8_gui, "", s:nord8_term, "", "", "") |