feat: add nickel file type

This commit is contained in:
CJ van den Berg 2025-09-29 16:02:56 +02:00
parent 3c16aebea6
commit 73e2396f61
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 11 additions and 0 deletions

View file

@ -329,6 +329,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,