From da812e05d4cbe44056bf2bb30e9e88c0ead99530 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 8 Jan 2025 22:25:04 +0100 Subject: [PATCH] fix(config): add gui_config to file_types --- src/file_types.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file_types.zig b/src/file_types.zig index fc11e81..d3aacfa 100644 --- a/src/file_types.zig +++ b/src/file_types.zig @@ -37,7 +37,7 @@ pub const conf = .{ .description = "Config", .color = 0x000000, .icon = "", - .extensions = .{ "conf", "config", ".gitconfig" }, + .extensions = .{ "conf", "config", ".gitconfig", "gui_config" }, .highlights = fish.highlights, .comment = "#", .parser = fish.parser,