feat: add reStructuredText file type

This commit is contained in:
CJ van den Berg 2025-11-04 17:15:42 +01:00
parent a2356a459e
commit 10b92330cf
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 12 additions and 2 deletions

View file

@ -512,6 +512,14 @@ pub const rpmspec = .{
.comment = "#",
};
pub const rst = .{
.description = "reStructuredText",
.extensions = .{"rst"},
.comment = "..",
.highlights = "nvim-treesitter/queries/rst/highlights.scm",
.injections = "nvim-treesitter/queries/rst/injections.scm",
};
pub const ruby = .{
.description = "Ruby",
.color = 0xd91404,