From fccff1f5d74f5af64e9ea8cec12859d6b62410a8 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 29 Nov 2023 13:04:50 +0300 Subject: [PATCH] Show LSP warning on status line only --- vim/.vim/plugin/lsp.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/.vim/plugin/lsp.vim b/vim/.vim/plugin/lsp.vim index 573ddbd..a342e3c 100644 --- a/vim/.vim/plugin/lsp.vim +++ b/vim/.vim/plugin/lsp.vim @@ -36,8 +36,13 @@ endfor var lspOpts = { ignoreMissingServer: true, autoComplete: false, + autoHighlight: true, autoPopulateDiags: true, + + # Lint warning only on status line, do not show near cursor + showDiagInPopup: false, + showDiagOnStatusLine: true, showSignature: false, } -- 2.44.0