aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/kitty/default.nix
blob: a1cfbf3a705f604ae52ab23168b7a55ae8bbeb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:
{
  programs.kitty = {
    enable = true;
    font.name = "Source Code Pro";
    font.size = 11.3;
    theme = "Catppuccin-Mocha";
    shellIntegration.enableFishIntegration = true;
    settings = {
      cursor_shape = "underline";
      background_opacity = "0.7";
    };
  };
}