blob: 7291cbd8a7d12f3e43f06f69c83689c4d0216773 (
plain)
1
2
3
4
5
6
7
8
9
|
if require("lv-utils").check_lsp_client_active "terraformls" then
return
end
require("lspconfig").terraformls.setup {
cmd = { DATA_PATH .. "/lspinstall/terraform/terraform-ls", "serve" },
on_attach = require("lsp").common_on_attach,
filetypes = { "tf", "terraform", "hcl" },
}
|