feat: add hcl file type

This commit is contained in:
CJ van den Berg 2025-09-29 16:25:20 +02:00
parent beea570be7
commit dcb7b95ead
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 12 additions and 0 deletions

View file

@ -199,6 +199,16 @@ pub const haskell = .{
.comment = "--",
};
pub const hcl = .{
.description = "Terraform/HCL",
.color = 0x8956c4,
.icon = "",
.extensions = .{ "hcl", "tf", "tfvars" },
.comment = "#",
.highlights = "nvim-treesitter/queries/hcl/highlights.scm",
.injections = "nvim-treesitter/queries/hcl/injections.scm",
};
pub const html = .{
.description = "HTML",
.color = 0xe54d26,