From a19c2833f35619323ce2fd6d4f43df132ee2e228 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 23 Jul 2025 23:13:05 +0300 Subject: [PATCH] ghostty: make scrollback limit 100mib --- modules/common/ghostty.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/common/ghostty.nix b/modules/common/ghostty.nix index 3cd69ac..cae81c2 100644 --- a/modules/common/ghostty.nix +++ b/modules/common/ghostty.nix @@ -23,8 +23,9 @@ in merge <| mkIf config.isDesktop { window-padding-x = padding; window-padding-y = padding; - - scrollback-limit = 2500; + + # 100 MiB + scrollback-limit = 100 * 1024 * 1024; mouse-hide-while-typing = true;