fix(nvim): Add LspReference* groups (#241)
Adds LspReference groups so that the reference highlighting feature works for neovim built-in LSP. Co-authored-by: Mathew Robinson <mathew@chasinglogic.io>
This commit is contained in:
parent
ab37ffc5ae
commit
d82b9198d4
1 changed files with 3 additions and 0 deletions
|
@ -250,6 +250,9 @@ call s:h('Conceal', s:cyan, s:none)
|
||||||
" Neovim uses SpecialKey for escape characters only. Vim uses it for that, plus whitespace.
|
" Neovim uses SpecialKey for escape characters only. Vim uses it for that, plus whitespace.
|
||||||
if has('nvim')
|
if has('nvim')
|
||||||
hi! link SpecialKey DraculaRed
|
hi! link SpecialKey DraculaRed
|
||||||
|
hi! link LspReferenceText DraculaSelection
|
||||||
|
hi! link LspReferenceRead DraculaSelection
|
||||||
|
hi! link LspReferenceWrite DraculaSelection
|
||||||
hi! link LspDiagnosticsDefaultInformation DraculaCyan
|
hi! link LspDiagnosticsDefaultInformation DraculaCyan
|
||||||
hi! link LspDiagnosticsDefaultHint DraculaCyan
|
hi! link LspDiagnosticsDefaultHint DraculaCyan
|
||||||
hi! link LspDiagnosticsDefaultError DraculaError
|
hi! link LspDiagnosticsDefaultError DraculaError
|
||||||
|
|
Loading…
Reference in a new issue