feat: add mail file type support

closes #9
This commit is contained in:
CJ van den Berg 2024-12-12 17:05:50 +01:00
parent eda5f22464
commit 0b0cb14e25
3 changed files with 12 additions and 2 deletions

View file

@ -248,6 +248,15 @@ pub const lua = .{
.language_server = .{"lua-lsp"},
};
pub const mail = .{
.description = "E-Mail",
.icon = "󰇮",
.extensions = .{ "eml", "mbox" },
.comment = ">",
.highlights = "tree-sitter-mail/queries/mail/highlights.scm",
.first_line_matches = .{ .prefix = "From" },
};
pub const make = .{
.description = "Make",
.extensions = .{ "makefile", "Makefile", "MAKEFILE", "GNUmakefile", "mk", "mak", "dsp" },