From b9dba629c1b4ae896eec523fb3266d122c74917b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 13 Sep 2023 18:59:39 -0700 Subject: [PATCH] config: default cursor style has to be block It appears there are programs that assume this. --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index c8a952e03..ff599e1ee 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -110,7 +110,7 @@ palette: Palette = .{}, /// In order to fix it, we probably would want to add something similar to Kitty's /// shell integration options (no-cursor). For more information see: /// https://sw.kovidgoyal.net/kitty/conf/#opt-kitty.shell_integration -@"cursor-style": terminal.Cursor.Style = .bar, +@"cursor-style": terminal.Cursor.Style = .block, /// Whether the cursor shall blink @"cursor-style-blink": bool = true,