diff --git a/src/termio/Exec.zig b/src/termio/Exec.zig index 04e1d879f..2b149c9a8 100644 --- a/src/termio/Exec.zig +++ b/src/termio/Exec.zig @@ -119,6 +119,9 @@ pub fn init(alloc: Allocator, opts: termio.Options) !Exec { try term.screen.kitty_images.setLimit(alloc, opts.config.image_storage_limit); try term.secondary_screen.kitty_images.setLimit(alloc, opts.config.image_storage_limit); + // Set default cursor blink settings + term.modes.set(.cursor_blinking, opts.config.cursor_blink); + var subprocess = try Subprocess.init(alloc, opts); errdefer subprocess.deinit();