From: Sergey Matveev Date: Wed, 29 Nov 2023 10:04:50 +0000 (+0300) Subject: Show LSP warning on status line only X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=fccff1f5d74f5af64e9ea8cec12859d6b62410a8 Show LSP warning on status line only --- 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, }