Merge branch 'zig-0.14'

This commit is contained in:
CJ van den Berg 2025-09-29 16:40:36 +02:00
commit fa2685056c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 75 additions and 0 deletions

View file

@ -14,6 +14,13 @@ pub const astro = .{
.comment = "//",
};
pub const awk = .{
.description = "Awk",
.icon = "",
.extensions = .{"awk", "gawk"},
.comment = "#",
};
pub const bash = .{
.description = "Bash",
.color = 0x3e474a,
@ -120,6 +127,15 @@ pub const elixir = .{
.injections = "tree-sitter-elixir/queries/injections.scm",
};
pub const elm = .{
.description = "Elm",
.color = 0x0e76ad,
.icon = "",
.extensions = .{ "elm" },
.comment = "--",
.injections = "tree-sitter-elm/queries/injections.scm",
};
pub const fish = .{
.description = "Fish",
.extensions = .{"fish"},
@ -183,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,
@ -250,6 +276,16 @@ pub const kdl = .{
.comment = "//",
};
pub const latex = .{
.description = "LaTeX",
.color = 0x008080,
.icon = "",
.extensions = .{ "tex", "aux", "sty", "cls" },
.comment = "%",
.highlights = "nvim-treesitter/queries/latex/highlights.scm",
.injections = "nvim-treesitter/queries/latex/injections.scm",
};
pub const commonlisp = .{
.description = "Lisp",
.color = 0xFFFFFF,
@ -312,6 +348,15 @@ pub const nasm = .{
.injections = "tree-sitter-nasm/queries/injections.scm",
};
pub const nickel = .{
.description = "Nickel",
.color = 0xe1c3fd,
.icon = "",
.extensions = .{"ncl"},
.comment = "#",
.injections = "tree-sitter-nickel/queries/injections.scm",
};
pub const nim = .{
.description = "Nim",
.color = 0xffe953,
@ -386,6 +431,15 @@ pub const org = .{
.comment = "#",
};
pub const perl = .{
.description = "Perl",
.color = 0x005c81,
.icon = "",
.extensions = .{"pl", "pm", "t"},
.comment = "#",
.injections = "tree-sitter-perl/queries/injections.scm",
};
pub const php = .{
.description = "PHP",
.color = 0x6181b6,
@ -395,6 +449,14 @@ pub const php = .{
.injections = "tree-sitter-php/queries/injections.scm",
};
pub const po = .{
.description = "Gettext (po)",
.icon = "",
.extensions = .{"po"},
.comment = "#",
.injections = "tree-sitter-po/queries/injections.scm",
};
pub const powershell = .{
.description = "PowerShell",
.color = 0x0873c5,