feat: add v file type

This commit is contained in:
CJ van den Berg 2026-03-31 10:42:14 +02:00
parent 56929f0c52
commit c1195280b4
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 14 additions and 2 deletions

View file

@ -686,6 +686,16 @@ pub const uxntal = .{
.comment = "(",
};
pub const v = .{
.description = "V",
.color = 0x5d86be,
.icon = "V",
.extensions = .{ "v", "vsh", "v.mod" },
.comment = "//",
.highlights = "nvim-treesitter/runtime/queries/v/highlights.scm",
.injections = "nvim-treesitter/runtime/queries/v/injections.scm",
};
pub const vim = .{
.description = "Vimscript",
.color = 0x007f00,