60 lines
1.3 KiB
Lua
60 lines
1.3 KiB
Lua
vim.api.nvim_create_autocmd("FileType", {
|
|
pattern = { "hcl", "terraform" },
|
|
desc = "terraform/hcl commentstring configuration",
|
|
command = "setlocal commentstring=#\\ %s",
|
|
})
|
|
|
|
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
if type(opts.ensure_installed) == "table" then
|
|
vim.list_extend(opts.ensure_installed, {
|
|
"terraform",
|
|
"hcl",
|
|
})
|
|
end
|
|
end,
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
terraformls = {},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"nvimtools/none-ls.nvim",
|
|
optional = true,
|
|
opts = function(_, opts)
|
|
local null_ls = require("null-ls")
|
|
opts.sources = vim.list_extend(opts.sources or {}, {
|
|
null_ls.builtins.formatting.terraform_fmt,
|
|
null_ls.builtins.diagnostics.terraform_validate,
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"mfussenegger/nvim-lint",
|
|
optional = true,
|
|
opts = {
|
|
linters_by_ft = {
|
|
terraform = { "terraform_validate" },
|
|
tf = { "terraform_validate" },
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"stevearc/conform.nvim",
|
|
optional = true,
|
|
opts = {
|
|
formatters_by_ft = {
|
|
terraform = { "terraform_fmt" },
|
|
tf = { "terraform_fmt" },
|
|
["terraform-vars"] = { "terraform_fmt" },
|
|
},
|
|
},
|
|
},
|
|
}
|