LunarVim/lua/lang/terraform.lua

58 lines
1.2 KiB
Lua
Raw Normal View History

2021-07-15 00:50:07 +02:00
local M = {}
M.config = function()
2021-07-15 03:14:25 +02:00
O.lang.terraform = {
formatter = {
exe = "terraform",
args = { "fmt" },
stdin = false,
},
lsp = {
path = DATA_PATH .. "/lspinstall/terraform/terraform-ls",
},
2021-07-15 03:14:25 +02:00
}
2021-07-15 00:50:07 +02:00
end
M.format = function()
O.formatters.filetype["hcl"] = {
function()
return {
exe = O.lang.terraform.formatter.exe,
args = O.lang.terraform.formatter.args,
stdin = O.lang.terraform.formatter.stdin,
tempfile_prefix = ".formatter",
2021-07-15 00:50:07 +02:00
}
end,
}
O.formatters.filetype["tf"] = O.formatters.filetype["hcl"]
require("formatter.config").set_defaults {
logging = false,
filetype = O.formatters.filetype,
}
end
M.lint = function()
-- TODO: implement linters (if applicable)
return "No linters configured!"
end
M.lsp = function()
if require("lv-utils").check_lsp_client_active "terraformls" then
return
end
require("lspconfig").terraformls.setup {
cmd = { O.lang.terraform.lsp.path, "serve" },
2021-07-15 00:50:07 +02:00
on_attach = require("lsp").common_on_attach,
filetypes = { "tf", "terraform", "hcl" },
}
end
M.dap = function()
-- TODO: implement dap
return "No DAP configured!"
end
return M