feat: add ziggy file type

This commit is contained in:
CJ van den Berg 2024-02-22 13:56:20 +01:00
parent 894f7cd831
commit 10de00d684
3 changed files with 11 additions and 2 deletions

View file

@ -283,3 +283,11 @@ pub const zig = .{
.comment = "//",
.injections = @embedFile("tree-sitter-zig/queries/injections.scm"),
};
pub const ziggy = .{
.color = 0xf7a41d,
.icon = "",
.extensions = &[_][]const u8{ "ziggy" },
.comment = "//",
.highlights = @embedFile("tree-sitter-ziggy/tree-sitter-ziggy/queries/highlights.scm"),
};