Update language servers

Adding pylsp for lspconfig

Adding gopls since Nvim 0.5 is not using vim-go
This commit is contained in:
ViViDboarder 2021-08-24 09:59:12 -07:00
parent 07659f2aaf
commit a293e22eb0
1 changed files with 5 additions and 0 deletions

View File

@ -33,10 +33,15 @@ function install_language_servers() {
# Python
maybe_run pip install --user --upgrade python-language-server
maybe_run pip3 install --user --upgrade python-language-server
maybe_run pip install --user python-lsp-server[all]
maybe_run pip3 install --user python-lsp-server[all]
# Rust
maybe_run rustup component add rls rustfmt rust-analysis rust-src
# Go
maybe_run env GO111MODULE=on go get golang.org/x/tools/gopls@latest
echo ""
}