flake/programs/kitty.nix

19 lines
419 B
Nix
Raw Normal View History

2023-11-25 14:33:53 +01:00
{
hm.programs.kitty = {
enable = true;
font = {
name = "Iosevka Nerd Font";
size = 12;
};
shellIntegration.enableFishIntegration = true;
theme = "Catppuccin-Macchiato";
2023-11-27 14:30:15 +01:00
extraConfig = ''
tab_bar_edge bottom
tab_bar_style powerline
tab_powerline_style slanted
tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else '\'
'';
2023-11-25 14:33:53 +01:00
};
}