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