Merge branch 'main' into main

navigator
jaydamani 3 years ago committed by GitHub
commit 3b85cd77fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"

@ -36,9 +36,7 @@ function on_attach(client)
end
local servers = { "tsserver" }
local servers = { "tsserver", "cssls", "pyls", "html" }
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup { on_attach = on_attach }
end
end
Loading…
Cancel
Save