home: vim: lspconfig: add 'starpls'

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,
})
end
-- Starlark
if utils.is_executable("starpls") then
lspconfig.starpls.setup({
capabilities = capabilities,
on_attach = lsp.on_attach,
})
end