autoload/lsp/lsp.vim | 8 ++++---- diff --git a/autoload/lsp/lsp.vim b/autoload/lsp/lsp.vim index 42ce8bdfbc9df080ee3d414742c67105dd5b4561..370b6658153b860b01ba3b4c7c0b03857503d5cd 100644 --- a/autoload/lsp/lsp.vim +++ b/autoload/lsp/lsp.vim @@ -37,13 +37,13 @@ lineHL = 'MatchParen' endif # Signs used for LSP diagnostics sign_define([{name: 'LspDiagError', text: 'E>', texthl: 'ErrorMsg', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagWarning', text: 'W>', texthl: 'Search', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagInfo', text: 'I>', texthl: 'Pmenu', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagHint', text: 'H>', texthl: 'Question', - linehl: 'MatchParen'}]) + linehl: lineHL}]) prop_type_add('LspTextRef', {highlight: 'Search', override: true}) prop_type_add('LspReadRef', {highlight: 'DiffChange', override: true})