Merge pull request #2 from postsolar/enable-purescript

Enable PureScript
This commit is contained in:
CJ van den Berg 2024-02-23 10:39:38 +01:00 committed by GitHub
commit f87b580e02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -211,12 +211,13 @@ pub const php = .{
.injections = @embedFile("tree-sitter-php/queries/injections.scm"),
};
// conflicts with haskell
// pub const purescript = .{
// .extensions = &[_][]const u8{"purs"},
// .comment = "--",
// .injections = @embedFile("tree-sitter-purescript/queries/injections.scm"),
// };
pub const purescript = .{
.color = 0x14161a,
.icon = "",
.extensions = &[_][]const u8{"purs"},
.comment = "--",
.injections = @embedFile("tree-sitter-purescript/queries/injections.scm"),
};
pub const python = .{
.color = 0xffd845,