From 6387a4a95d66016106e00d703b4efbfbf319b0fd Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Wed, 6 Nov 2024 18:20:50 +0100 Subject: [PATCH] increase kitty scrollback --- modules/applications/kitty.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/applications/kitty.nix b/modules/applications/kitty.nix index 3ff0cb4..364e33a 100644 --- a/modules/applications/kitty.nix +++ b/modules/applications/kitty.nix @@ -1,4 +1,8 @@ -{ lib, config, pkgs, ... }: +{ + lib, + config, + ... +}: let cfg = config.modules.apps.kitty; in @@ -12,6 +16,7 @@ in enable = true; settings = { confirm_os_window_close = 0; + scrollback_lines = 5000; }; shellIntegration.enableZshIntegration = true; };