diff options
| author | jdhao <jdhao@hotmail.com> | 2021-07-15 23:33:02 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2021-07-15 23:33:02 +0800 |
| commit | ffb0601aca630d33adc84606db54aca3a5484e72 (patch) | |
| tree | e594a495985224da8fc5b53aa362fe62f2965f7c /docs/Nvim_setup.sh | |
| parent | 4689c4b22f4a4e560b325bbc9798597b2bbc182a (diff) | |
Use pylsp instead of pyls
It seems that pyls, the original python language server has lost its
momentum, and pylsp is a community driven fork of pyls. So
nvim-lspconfig has dropped support for pyls in https://github.com/neovim/nvim-lspconfig/pull/1074.
See also https://github.com/palantir/python-language-server/issues/935
and https://github.com/python-lsp/python-lsp-server/issues/27.
Diffstat (limited to 'docs/Nvim_setup.sh')
| -rwxr-xr-x | docs/Nvim_setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Nvim_setup.sh b/docs/Nvim_setup.sh index cf793d6..cb66300 100755 --- a/docs/Nvim_setup.sh +++ b/docs/Nvim_setup.sh @@ -68,7 +68,7 @@ fi # Install some Python packages used by Neovim plugins. echo "Installing Python packages" -declare -a py_packages=("pynvim" 'python-language-server[all]' "black" "vim-vint" "pyls-isort" "pyls-mypy") +declare -a py_packages=("pynvim" 'python-lsp-server[all]' "black" "vim-vint" "pyls-isort" "pylsp-mypy") if [[ "$SYSTEM_PYTHON" = true ]]; then echo "Using system Python to install $(PY_PACKAGES)" |
