From a4dadcd2a37ea69624a808fd8fd47b540c797a45 Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Tue, 22 Jun 2021 01:09:23 -0400 Subject: [PATCH] fix: prabirshrestha/vim-lsp is not Neovim LSP :) (#270) --- colors/onedark.vim | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 8e2c7f5..2798013 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -578,6 +578,12 @@ call s:h("mkdHeading", { "fg": s:red }) call s:h("mkdLink", { "fg": s:blue }) call s:h("mkdURL", { "fg": s:cyan, "gui": "underline", "cterm": "underline" }) +" prabirshrestha/vim-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 }) + " tpope/vim-fugitive call s:h("diffAdded", { "fg": s:green }) call s:h("diffRemoved", { "fg": s:red }) @@ -635,10 +641,6 @@ if has("nvim") " }}} " 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 })