From d330f17f8756d44dea7cf50182cb1c53159fbabd Mon Sep 17 00:00:00 2001 From: Jesse Cooke Date: Sun, 8 Dec 2024 11:35:46 -0800 Subject: [PATCH] nvim: set tfvars filetype to terraform-vars https://github.com/hashicorp/terraform-ls/issues/1838 --- .config/nvim/filetype.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/filetype.lua b/.config/nvim/filetype.lua index ab5163f..c1b54b4 100644 --- a/.config/nvim/filetype.lua +++ b/.config/nvim/filetype.lua @@ -1,4 +1,4 @@ vim.filetype.add({ - extension = { tfvars = "terraform", tf = "terraform", tfstate = "json", hujson = "jsonc", hurl = "hurl" }, + extension = { tfvars = "terraform-vars", tf = "terraform", tfstate = "json", hujson = "jsonc", hurl = "hurl" }, filename = { ["Justfile"] = "just" }, })