aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/lsp.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-09-27 09:26:41 +0800
committerGuangxiong Lin <[email protected]>2022-09-27 09:26:41 +0800
commite324531cefff20d2310f25be6d8cae82fb053554 (patch)
tree90bf2eac066c50066bb2f8b4893656e8b9a4b55c /.vim/after/plugin/lsp.vim
parent3ae526f69af79e35b42e361af25bda260d9e6f15 (diff)
downloaddotfiles-e324531cefff20d2310f25be6d8cae82fb053554.tar.gz
dotfiles-e324531cefff20d2310f25be6d8cae82fb053554.tar.bz2
dotfiles-e324531cefff20d2310f25be6d8cae82fb053554.zip
Share lsp server between vim-lsp and ale
Diffstat (limited to '.vim/after/plugin/lsp.vim')
-rw-r--r--.vim/after/plugin/lsp.vim4
1 files changed, 4 insertions, 0 deletions
diff --git a/.vim/after/plugin/lsp.vim b/.vim/after/plugin/lsp.vim
index ae5f203..1aaee35 100644
--- a/.vim/after/plugin/lsp.vim
+++ b/.vim/after/plugin/lsp.vim
@@ -8,6 +8,10 @@ packadd vim-lsp
packadd vim-lsp-snippets
packadd vim-lsp-ultisnips
+" This package will help enable diagnostic config of vim-lsp and then it
+" can help send the result to ALE. Pay attention of the loading order.
+packadd vim-lsp-ale
+
if executable('pylsp')
au User lsp_setup call lsp#register_server({
\ 'name': 'pylsp',