zaneyos/modules/home/kitty.nix

21 lines
448 B
Nix
Raw Normal View History

{pkgs, ...}: {
programs.kitty = {
enable = false;
package = pkgs.kitty;
settings = {
wheel_scroll_min_lines = 1;
window_padding_width = 4;
confirm_os_window_close = 0;
scrollback_lines = 10000;
enable_audio_bell = false;
mouse_hide_wait = 60;
};
extraConfig = ''
tab_bar_style fade
tab_fade 1
active_tab_font_style bold
inactive_tab_font_style bold
'';
};
}