Only run LSP highlights for nvim 8 or later

Closes #43
This commit is contained in:
Patrick Stockwell
2023-09-12 09:34:41 +10:00
parent 5facd38476
commit 3f59deae02

View File

@@ -629,7 +629,7 @@ call Highlight('DiagnosticUnderlineHint', { 'fg': s:none, 'bg': s:none, 'style':
hi link LspDiagnosticsUnderlineHint DiagnosticUnderlineHint
" }}}
if (has('nvim'))
if (has('nvim-0.8'))
" Neovim specific Treesitter highlights
" Python {{{