tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
feat: kitty
nel.pet
3 months ago
7df05e66
1ae1a379
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+90
3 changed files
expand all
collapse all
unified
split
modules
home
default.nix
kitty
default.nix
kitty.conf
+1
modules/home/default.nix
···
5
5
./git.nix
6
6
./helix/default.nix
7
7
./i18n.nix
8
8
+
./kitty/default.nix
8
9
./vscode.nix
9
10
./ssh.nix
10
11
./nix.nix
+11
modules/home/kitty/default.nix
···
1
1
+
{ pkgs, inputs, ... }: {
2
2
+
home.packages = [
3
3
+
(inputs.wrappers.lib.wrapPackage {
4
4
+
inherit pkgs;
5
5
+
package = pkgs.kitty;
6
6
+
flags = {
7
7
+
"--config" = ./kitty.conf;
8
8
+
};
9
9
+
})
10
10
+
];
11
11
+
}
+78
modules/home/kitty/kitty.conf
···
1
1
+
2
2
+
## Theme
3
3
+
## name: Catppuccin Kitty Mocha
4
4
+
## author: Catppuccin Org
5
5
+
## license: MIT
6
6
+
## upstream: https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf
7
7
+
## blurb: Soothing pastel theme for the high-spirited!
8
8
+
9
9
+
# The basic colors
10
10
+
foreground #cdd6f4
11
11
+
background #1e1e2e
12
12
+
selection_foreground #1e1e2e
13
13
+
selection_background #f5e0dc
14
14
+
15
15
+
# Cursor colors
16
16
+
cursor #f5e0dc
17
17
+
cursor_text_color #1e1e2e
18
18
+
19
19
+
# URL underline color when hovering with mouse
20
20
+
url_color #f5e0dc
21
21
+
22
22
+
# Kitty window border colors
23
23
+
active_border_color #b4befe
24
24
+
inactive_border_color #6c7086
25
25
+
bell_border_color #f9e2af
26
26
+
27
27
+
# OS Window titlebar colors
28
28
+
wayland_titlebar_color system
29
29
+
macos_titlebar_color system
30
30
+
31
31
+
# Tab bar colors
32
32
+
active_tab_foreground #11111b
33
33
+
active_tab_background #cba6f7
34
34
+
inactive_tab_foreground #cdd6f4
35
35
+
inactive_tab_background #181825
36
36
+
tab_bar_background #11111b
37
37
+
38
38
+
# Colors for marks (marked text in the terminal)
39
39
+
mark1_foreground #1e1e2e
40
40
+
mark1_background #b4befe
41
41
+
mark2_foreground #1e1e2e
42
42
+
mark2_background #cba6f7
43
43
+
mark3_foreground #1e1e2e
44
44
+
mark3_background #74c7ec
45
45
+
46
46
+
# The 16 terminal colors
47
47
+
48
48
+
# black
49
49
+
color0 #45475a
50
50
+
color8 #585b70
51
51
+
52
52
+
# red
53
53
+
color1 #f38ba8
54
54
+
color9 #f38ba8
55
55
+
56
56
+
# green
57
57
+
color2 #a6e3a1
58
58
+
color10 #a6e3a1
59
59
+
60
60
+
# yellow
61
61
+
color3 #f9e2af
62
62
+
color11 #f9e2af
63
63
+
64
64
+
# blue
65
65
+
color4 #89b4fa
66
66
+
color12 #89b4fa
67
67
+
68
68
+
# magenta
69
69
+
color5 #f5c2e7
70
70
+
color13 #f5c2e7
71
71
+
72
72
+
# cyan
73
73
+
color6 #94e2d5
74
74
+
color14 #94e2d5
75
75
+
76
76
+
# white
77
77
+
color7 #bac2de
78
78
+
color15 #a6adc8