fix(terraform): Add commentstring and proper syntax highlighting for tfvars files

This commit is contained in:
Zoltán Reegn 2024-01-31 19:25:39 +01:00
parent a50f92f755
commit 82ef817103

View file

@ -1,8 +1,9 @@
vim.api.nvim_create_autocmd("FileType", {
pattern = { "hcl", "terraform" },
pattern = { "hcl", "terraform", "terraform-vars" },
desc = "terraform/hcl commentstring configuration",
command = "setlocal commentstring=#\\ %s",
})
vim.treesitter.language.register("terraform", "terraform-vars")
return {
{