feat: add llvm file type

This commit is contained in:
CJ van den Berg 2026-03-17 22:06:27 +01:00
parent b56a7847d0
commit 505427ee32
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 11 additions and 0 deletions

View file

@ -332,6 +332,15 @@ pub const commonlisp = .{
.injections = "nvim-treesitter/runtime/queries/commonlisp/injections.scm",
};
pub const llvm = .{
.description = "Llvm",
.icon = "",
.extensions = .{ "llvm", "ll" },
.comment = ";",
.highlights = "nvim-treesitter/runtime/queries/llvm/highlights.scm",
.injections = "nvim-treesitter/runtime/queries/llvm/injections.scm",
};
pub const lua = .{
.description = "Lua",
.color = 0x02027d,