From e009704e75409f04b16558123ad04c0a8dfee031 Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 9 Aug 2021 18:36:15 +0200 Subject: [PATCH] vim: move from python pyls to pylsp note: this requires python-lsp-server (https://pypi.org/project/python-lsp-server/) --- vim/plugins_config.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugins_config.vim b/vim/plugins_config.vim index ffff547..e6dff97 100644 --- a/vim/plugins_config.vim +++ b/vim/plugins_config.vim @@ -34,7 +34,7 @@ let g:ale_linters = { \ 'dockerfile': ["hadolint"], \ 'zsh': ['bashlint', "shellcheck"], \ 'cpp': ['clangd'], - \ 'python': ['pyls', 'pylint', 'bandit', 'mypy'], + \ 'python': ['pylsp', 'pylint', 'bandit', 'mypy'], \ 'go': ['gopls', 'gobuild'], \ 'rust': ['analyzer', 'cargo', 'rls'], \ 'yaml': ['yamllint'],