-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.nix
73 lines (65 loc) · 1.45 KB
/
alacritty.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
programs.alacritty = {
enable = true;
settings = {
general.live_config_reload = true;
window = {
opacity = 0.8;
decorations = "none";
dynamic_title = true;
};
colors = {
bright = {
black = "#393939";
magenta = "#ff7eb6";
green = "#42be65";
yellow = "#ffe97b";
blue = "#33b1ff";
red = "#ee5396";
cyan = "#3ddbd9";
white = "#ffffff";
};
normal = {
black = "#000000";
magenta = "#ff7eb6";
green = "#42be65";
yellow = "#ffe97b";
blue = "#33b1ff";
red = "#ee5396";
cyan = "#3ddbd9";
white = "#dde1e6";
};
primary = {
background = "#000000";
foreground = "#ffffff";
};
selection = {
background = "#525252";
text = "CellForeground";
};
cursor = {
text = "#000000";
cursor = "#ff7eb6";
};
};
cursor = {
blink_interval = 550;
unfocused_hollow = false;
style = {
blinking = "On";
shape = "Block";
};
};
selection = {
save_to_clipboard = false;
};
font = {
size = 10;
bold.family = "Hack";
bold_italic.family = "Hack";
italic.family = "Hack";
normal.family = "Hack";
};
};
};
}