feat: add hare to syntax file types

This commit is contained in:
xdBronch 2024-10-17 20:47:08 -04:00 committed by CJ van den Berg
parent b5c309f548
commit dcfa5cdf3f
2 changed files with 8 additions and 1 deletions

View file

@ -116,7 +116,12 @@ pub const go = .{
.extensions = .{"go"},
.comment = "//",
.language_server = .{"gopls"},
.formatter = .{ "gofmt" },
.formatter = .{"gofmt"},
};
pub const hare = .{
.extensions = .{"ha"},
.comment = "//",
};
pub const haskell = .{