Add additional kitty config

This commit is contained in:
Joshua Yuen 2025-07-29 13:30:33 -04:00
parent 7625baf16f
commit cb7b220be5
Signed by: josh
GPG Key ID: 502720BC22ED411C
1 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,14 @@ in
programs.kitty = {
enable = true;
package = pkgs.kitty;
settings = {
scrollback_lines = 10000;
shell_integration = true;
};
extraConfig = ''
# Clipboard
map ctrl+shift+v paste_from_selection
'';
};
};
}