aboutsummaryrefslogtreecommitdiff
path: root/home-manager/kitty/default.nix
blob: 7d7326beaa00da53f55b3ae241784b5553ec3e69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    pkgs,
    config,
    ...
}:
{
    programs.kitty = {
        enable = true;
        keybindings = {
            "control+shift+c" = "copy_to_clipboard";
            "control+shift+v" = "paste_from_clipboard";
        };
        settings = {
            #font_family = "Cousine Nerd Font";
            #font_size = "10.0";
            #background_opacity = "0.8";
            term = "xterm-256color";
            enable_audio_bell = "no";
            mouse_hide_wait = 2;
            window_padding_width = 4;
        };
        #extraConfig = (builtins.readFile ./palenight.conf);
    };
}