feat: add latex file type

This commit is contained in:
CJ van den Berg 2025-09-29 15:54:39 +02:00
parent 54cebe31e6
commit 3c16aebea6
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 12 additions and 0 deletions

View file

@ -257,6 +257,16 @@ pub const kdl = .{
.comment = "//",
};
pub const latex = .{
.description = "LaTeX",
.color = 0x008080,
.icon = "",
.extensions = .{ "tex", "aux", "sty", "cls" },
.comment = "%",
.highlights = "nvim-treesitter/queries/latex/highlights.scm",
.injections = "nvim-treesitter/queries/latex/injections.scm",
};
pub const commonlisp = .{
.description = "Lisp",
.color = 0xFFFFFF,