Improve Neovim LSP highlighting (#269)

This commit is contained in:
Josh Dick
2021-06-22 00:56:29 -04:00
committed by GitHub
parent d42ae8e741
commit 5f81e96d06

View File

@@ -633,7 +633,12 @@ if has("nvim")
let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_7
" }}}
" Neovim LSP colors {{{
" Neovim LSP {{{
call s:h("LspError", { "fg": s:red })
call s:h("LspWarning", { "fg": s:yellow })
call s:h("LspInformation", { "fg": s:blue })
call s:h("LspHint", { "fg": s:cyan })
call s:h("LspDiagnosticsDefaultError", { "fg": s:red })
call s:h("LspDiagnosticsDefaultWarning", { "fg": s:yellow })
call s:h("LspDiagnosticsDefaultInformation", { "fg": s:white })
@@ -642,7 +647,7 @@ if has("nvim")
call s:h("LspDiagnosticsUnderlineWarning", { "fg": s:yellow, "gui": "underline", "cterm": "underline" })
call s:h("LspDiagnosticsUnderlineInformation", { "fg": s:white, "gui": "underline", "cterm": "underline" })
call s:h("LspDiagnosticsUnderlineHint", { "fg": s:comment_grey, "gui": "underline", "cterm": "underline" })
" }}}
" }}}
endif
" }}}