feat: add nimble file type
This commit is contained in:
parent
1d810b8a46
commit
dee15cdb10
1 changed files with 11 additions and 0 deletions
|
@ -197,6 +197,15 @@ pub const nim = .{
|
||||||
.language_server = .{"nimlangserver"},
|
.language_server = .{"nimlangserver"},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pub const nimble = .{
|
||||||
|
.color = 0xffe953,
|
||||||
|
.icon = "",
|
||||||
|
.extensions = .{"nimble"},
|
||||||
|
.highlights = toml.highlights,
|
||||||
|
.comment = "#",
|
||||||
|
.parser = toml.parser,
|
||||||
|
};
|
||||||
|
|
||||||
pub const ninja = .{
|
pub const ninja = .{
|
||||||
.extensions = .{"ninja"},
|
.extensions = .{"ninja"},
|
||||||
.comment = "#",
|
.comment = "#",
|
||||||
|
@ -290,6 +299,8 @@ pub const @"ssh-config" = .{
|
||||||
pub const toml = .{
|
pub const toml = .{
|
||||||
.extensions = .{"toml"},
|
.extensions = .{"toml"},
|
||||||
.comment = "#",
|
.comment = "#",
|
||||||
|
.highlights = "tree-sitter-toml/queries/highlights.scm",
|
||||||
|
.parser = @import("file_type.zig").Parser("toml"),
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const typescript = .{
|
pub const typescript = .{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue