]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/plugin/lsp.vim
HI flag
[dotfiles.git] / vim / .vim / plugin / lsp.vim
index 62e8f49139a90d7eeb88aff2a50687856f5016da..a342e3cfe3398e2a0075bc5fe5edd49b29dbccc3 100644 (file)
@@ -36,11 +36,17 @@ 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,
 }
 
+set omnifunc=g:LspOmniFunc
 autocmd VimEnter * call LspAddServer(lspServers)
 autocmd VimEnter * call LspOptionsSet(lspOpts)
 autocmd CursorMoved * silent! LspDiagCurrent