nix/home/terminal/kitty/default.nix

27 lines
700 B
Nix

{
programs.kitty = {
enable = true;
enableGitIntegration = true;
themeFile = "Catppuccin-Mocha";
font = {
name = "NotoSansM Nerd Font Mono";
size = 10;
};
shellIntegration = {
enableFishIntegration = true;
};
# extraConfig = "\nwheel_scroll_multiplier 5.0\nconfirm_os_window_close 0";
settings = {
scrollback_lines = 10000;
enable_audio_bell = false;
update_check_interval = 0;
wheel_scroll_multiplier = 5.0;
confirm_os_window_close = 0;
tab_bar_min_tabs = 2;
tab_bar_edge = "top";
tab_bar_style = "powerline";
tab_powerline_style = "slanted";
mouse_hide_wait = "-1.0";
};
};
}