Merge pull request #10 from marvelman3284/pyls
Add support for the python language server
This commit is contained in:
commit
5d4e268d6f
14
install.sh
14
install.sh
|
@ -2,7 +2,7 @@
|
|||
BASE=$(git rev-parse --show-toplevel)
|
||||
LSP_BIN_PATH=$HOME/.local/bin
|
||||
|
||||
default_lsp_langs="css html ts rust"
|
||||
default_lsp_langs="css html ts rust python"
|
||||
lsp_langs=${@:-"$default_lsp_langs"}
|
||||
|
||||
pfx="~~~~~ "
|
||||
|
@ -63,6 +63,14 @@ install_node_deps () {
|
|||
sudo npm install -g $@
|
||||
}
|
||||
|
||||
install_python_deps () {
|
||||
if [[ -z $(which pip) ]]; then
|
||||
echo "python/pip not installed"
|
||||
return
|
||||
fi
|
||||
sudo python3 -m pip install $@
|
||||
}
|
||||
|
||||
install_ts() {
|
||||
install_node_deps typescript typescript-language-server prettier
|
||||
}
|
||||
|
@ -86,6 +94,10 @@ install_rust() {
|
|||
fi
|
||||
}
|
||||
|
||||
install_python(){
|
||||
install_python_deps 'python-language-server[all]'
|
||||
}
|
||||
|
||||
for lang in ${lsp_langs}; do
|
||||
if fn_exists install_$lang ; then
|
||||
heading "Installing $lang language server"
|
||||
|
|
|
@ -32,3 +32,4 @@ buf_set_keymap("n", "<space>q", "<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>",
|
|||
require "lspconfig".tsserver.setup {}
|
||||
require "lspconfig".cssls.setup {}
|
||||
require "lspconfig".html.setup {}
|
||||
require "lspconfig".pyls.setup {}
|
||||
|
|
Loading…
Reference in New Issue