aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/kitty/default.nix~
blob: e4e62ca682f6b9bb8ebe1fe2025b3c531ff3b155 (plain)
1
2
3
4
5
6
7
8
9
10
    programs = {
      kitty = {
        enable = true;
        font.name = "Source Code Pro";
        font.size = 11.3;
        theme = "Catppuccin-Mocha";
        shellIntegration.enableFishIntegration = true;
        extraConfig = "cursor_shape underline";
      };
    };