aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/kitty.nix
blob: 8bfcf0c34d75baf11d4183d81892ab59459f1f4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ ... }:
{
  programs.kitty = {
    enable = true;
    themeFile = "Modus_Operandi_Tinted";
    settings = {
      copy_on_select = "yes";
      bold_font = "auto";
      italic_font = "auto";
      bold_italic_font = "auto";
      window_padding_width = "3 10";
      enable_audio_bell = "no";
      tab_bar_edge = "bottom";
      tab_title_template = "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}";
      tab_bar_style = "powerline";
      font_family = "Source Code Pro";
      font_size = "15.0";
    };
  };
}