feat: add sql file type support

This commit is contained in:
CJ van den Berg 2025-01-25 18:19:33 +01:00
parent 942053ff0a
commit 01558741e4
3 changed files with 10 additions and 2 deletions

View file

@ -434,6 +434,13 @@ pub const scheme = .{
.comment = ";",
};
pub const sql = .{
.description = "SQL",
.icon = "󰆼",
.extensions = .{ "sql" },
.comment = "--",
};
pub const @"ssh-config" = .{
.description = "SSH config",
.extensions = .{".ssh/config"},