From 5f81e96d06618648b8209f68b52601e70b2da003 Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Tue, 22 Jun 2021 00:56:29 -0400 Subject: [PATCH] Improve Neovim LSP highlighting (#269) --- colors/onedark.vim | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 86b3b60..8e2c7f5 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -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 " }}}