nix/home-manager/common/software/gui/kitty.nix

26 lines
697 B
Nix
Raw Normal View History

2024-01-05 16:17:13 +09:00
{ ... }: {
2023-08-16 12:12:39 +09:00
# Kitty Conf
# https://sw.kovidgoyal.net/kitty/conf/
2023-08-29 18:02:02 +09:00
2024-01-04 19:14:12 +09:00
programs.kitty = {
2024-01-04 19:12:50 +09:00
enable = true;
shellIntegration = {
enableBashIntegration = true;
};
settings = {
sync_to_monitor = true;
bell_on_tab = "🔔 ";
window_alert_on_bell = true;
visual_bell_color = "";
command_on_bell = "";
tab_bar_edge = "top";
tab_bar_style = "fade";
tab_bar_align = "left";
tab_bar_min_tabs = 2;
tab_powerline_style = "angled";
tab_title_template = "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{title}";
allow_hyperlinks = true;
disable_ligatures = "never";
};
};
2024-01-04 19:17:32 +09:00
}