From a293e22eb0f7d131006e53faa1fdce8cef7d795c Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 24 Aug 2021 09:59:12 -0700 Subject: [PATCH] Update language servers Adding pylsp for lspconfig Adding gopls since Nvim 0.5 is not using vim-go --- install-language-servers.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install-language-servers.sh b/install-language-servers.sh index d8f9b77..b307cb0 100755 --- a/install-language-servers.sh +++ b/install-language-servers.sh @@ -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 "" }