summaryrefslogtreecommitdiff
path: root/modules/home-manager/kitty.nix
blob: 1f449821c9b3fcb6b815acc57100729677d05d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, ... }:

{
  programs.kitty = {
    enable = true;

    enableGitIntegration = true;
    font = {
      package = pkgs.jetbrains-mono;
      name = "Jetbrains Mono";
      size = 10;
    };

    shellIntegration.enableFishIntegration = true;

    themeFile = "GruvboxMaterialDarkHard";

    settings = {
      confirm_os_window_close = 0;
      shell = "${pkgs.fish}/bin/fish";
    };
  };
}