+1
.gitignore
+1
.gitignore
ghostty/config
ghostty/config.bak
ghostty/config
ghostty/config.bak
+48
home-manager/ghostty.nix
+48
home-manager/ghostty.nix
···
1
+
{ pkgs }:
2
+
{
3
+
enable = true;
4
+
# currently i'm just installing this manually or building from source
5
+
package = null;
6
+
7
+
enableZshIntegration = true;
8
+
enableBashIntegration = true;
9
+
settings = {
10
+
command = "${pkgs.zsh}/bin/zsh";
11
+
12
+
keybind = [
13
+
"super+alt+i=inspector:toggle"
14
+
"super+plus=increase_font_size:1"
15
+
"super+minus=decrease_font_size:1"
16
+
"super+comma=unbind"
17
+
];
18
+
19
+
font-family = "Hack";
20
+
font-size = 12;
21
+
font-thicken = true;
22
+
adjust-cell-width = -1;
23
+
24
+
window-padding-color = "background";
25
+
window-padding-x = 2;
26
+
window-padding-y = 2;
27
+
28
+
theme = "GruvboxDarkHard";
29
+
palette = [
30
+
"0=#1d2021"
31
+
"1=#fb4934"
32
+
"2=#b8bb26"
33
+
"3=#fabd2f"
34
+
"4=#83a598"
35
+
"5=#d3869b"
36
+
"6=#8ec07c"
37
+
"7=#d5c4a1"
38
+
"8=#665c54"
39
+
"9=#fb4934"
40
+
"10=#b8bb26"
41
+
"11=#fabd2f"
42
+
"12=#83a598"
43
+
"13=#d3869b"
44
+
"14=#8ec07c"
45
+
"15=#fbf1c7"
46
+
];
47
+
};
48
+
}