home: vim: lspconfig: add 'starpls'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

This commit is contained in:
Bruno BELANYI 2024-07-01 09:59:14 +00:00
parent b895265537
commit dc90e14e60

View file

@ -76,3 +76,11 @@ if utils.is_executable("bash-language-server") then
on_attach = lsp.on_attach, on_attach = lsp.on_attach,
}) })
end end
-- Starlark
if utils.is_executable("starpls") then
lspconfig.starpls.setup({
capabilities = capabilities,
on_attach = lsp.on_attach,
})
end