nvim: Use pyrite

This commit is contained in:
ViViDboarder 2021-09-30 10:56:18 -07:00
parent e8bc313d4f
commit 6baa4feab0
2 changed files with 3 additions and 1 deletions

View File

@ -35,6 +35,7 @@ function install_language_servers() {
maybe_run pip3 install --user --upgrade python-language-server
maybe_run pip install --user python-lsp-server[all] || echo "WARNING: python-lsp-server is py3 only"
maybe_run pip3 install --user python-lsp-server[all]
maybe_run npm install -g pyrite
# Rust
maybe_run rustup component add rls rustfmt rust-analysis rust-src

View File

@ -68,7 +68,8 @@ local function config_lsp()
local language_servers = {
"bashls",
"gopls",
"pylsp",
-- "pylsp",
"pyright",
"rust_analyzer",
}
local lsp_config = require("lspconfig")