feat(nvim): various lsps

This commit is contained in:
u2515h
2024-01-25 20:22:20 +01:00
parent d7e30ca465
commit 499892baac
3 changed files with 123 additions and 65 deletions

View File

@@ -109,3 +109,12 @@ lspconfig.clangd.setup({cmd = {(deps["clang-tools_path"] .. "/bin/clangd")}})
lspconfig.bashls.setup({
cmd = {(deps["bash-language-server_path"] .. "/bin/bash-language-server")}
})
lspconfig.pylsp.setup({
cmd = { (deps["python-lsp-server_path"] .. "/bin/pylsp") },
})
lspconfig.lua_ls.setup({
cmd = { (deps["lua-lsp_path"] .. "/bin/lua-lsp") },
})
lspconfig.yamlls.setup({
cmd = { (deps["yaml-language-server_path"] .. "/bin/yaml-language-server"), "--stdio" },
})