Skip to content

Commit

Permalink
fix: update pylsp to the maintained fork (#81)
Browse files Browse the repository at this point in the history
Fixes #80
  • Loading branch information
kaihowl authored Nov 24, 2021
1 parent 79c94ba commit f1c4c58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvim/config--nvim--init.vim.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ configs.clangd.setup{root_dir=function(fname)
end
}

configs.pylsp.setup{cmd={'pyls'}, on_attach=on_attach, capabilities=capabilities}
configs.pylsp.setup{on_attach=on_attach, capabilities=capabilities}

configs.rls.setup{on_attach=on_attach, capabilities=capabilities}

Expand Down
2 changes: 1 addition & 1 deletion pyls/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ source $DOTS/common/pip.sh
ensure_pip_installed

# Install autopep8 to activate optional source formatting in pyls
sudo python3 -m pip install --upgrade python-language-server[all] autopep8
sudo python3 -m pip install --upgrade python-lsp-server[all] autopep8

0 comments on commit f1c4c58

Please sign in to comment.