feat: add astro file type support

closes #175
This commit is contained in:
CJ van den Berg 2025-02-12 10:48:02 +01:00
parent f81314c11e
commit 28bc77f461
3 changed files with 12 additions and 2 deletions

View file

@ -4,6 +4,14 @@ pub const agda = .{
.comment = "--",
};
pub const astro = .{
.description = "Astro",
.icon = "",
.extensions = .{"astro"},
.comment = "//",
.language_server = .{ "astro-ls", "--stdio" },
};
pub const bash = .{
.description = "Bash",
.color = 0x3e474a,