aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/lsp.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-06-04 16:53:35 +0800
committerGuangxiong Lin <[email protected]>2022-06-04 18:36:58 +0800
commitca6da1729156f74bb36ba94a864ab5e39e78ae3b (patch)
treea8b5d6310eb51a338f9f8808d45a63ce2e5d9b50 /.vim/after/plugin/lsp.vim
parent07231696a2e090790bda1910ec85a7dec3ecbb69 (diff)
downloaddotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.tar.gz
dotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.tar.bz2
dotfiles-ca6da1729156f74bb36ba94a864ab5e39e78ae3b.zip
Try using nvim
Diffstat (limited to '.vim/after/plugin/lsp.vim')
-rw-r--r--.vim/after/plugin/lsp.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/.vim/after/plugin/lsp.vim b/.vim/after/plugin/lsp.vim
index fe36f12..07ca6aa 100644
--- a/.vim/after/plugin/lsp.vim
+++ b/.vim/after/plugin/lsp.vim
@@ -1,6 +1,12 @@
+if has('nvim')
+ finish
+endif
+
let g:lsp_diagnostics_enabled = 0
let g:lsp_document_code_action_signs_enabled = 0
+packadd vim-lsp
+
if executable('pylsp')
au User lsp_setup call lsp#register_server({
\ 'name': 'pylsp',