From 275ca1f8f2d8db33c98aab11ae8d182ce043965f Mon Sep 17 00:00:00 2001 From: Artyom Andreev Date: Fri, 30 Dec 2022 11:30:53 +0300 Subject: [PATCH] add highlighting for 'lspInlayHintsType', 'lspInlayHintsParameter' of vim-lsp --- colors/onedark.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/onedark.vim b/colors/onedark.vim index 6769d6c..c7e33f6 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -622,6 +622,8 @@ call s:h("LspErrorText", { "fg": s:red }) call s:h("LspWarningText", { "fg": s:yellow }) call s:h("LspInformationText", { "fg":s:blue }) call s:h("LspHintText", { "fg":s:cyan }) +call s:h("lspInlayHintsType", { "fg":s:cyan }) +call s:h("lspInlayHintsParameter", { "fg":s:cyan }) call s:h("LspErrorHighlight", { "fg": s:red, "gui": "underline", "cterm": "underline" }) call s:h("LspWarningHighlight", { "fg": s:yellow, "gui": "underline", "cterm": "underline" }) call s:h("LspInformationHighlight", { "fg":s:blue, "gui": "underline", "cterm": "underline" })