-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacritty.nix
64 lines (62 loc) · 1.34 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
{pkgs, ...}: {
home.packages = with pkgs; [
nerd-fonts.ubuntu-mono
];
fonts.fontconfig.enable = true;
programs.alacritty = {
enable = true;
settings = {
colors = {
bright = {
black = "#4f525e";
blue = "#61afef";
cyan = "#56b6c2";
green = "#98c379";
magenta = "#c678dd";
red = "#e06c75";
white = "#ffffff";
yellow = "#e5c07b";
};
cursor = {
cursor = "#bfceff";
text = "#383a42";
};
normal = {
black = "#383a42";
blue = "#0184bc";
cyan = "#0997b3";
green = "#50a14f";
magenta = "#a626a4";
red = "#e45649";
white = "#fafafa";
yellow = "#c18401";
};
primary = {
background = "#fafafa";
foreground = "#383a42";
};
selection = {
background = "#bfceff";
text = "#383a42";
};
};
cursor = {
style = {
blinking = "Always";
};
blink_interval = 500;
blink_timeout = 0;
};
env = {
WINIT_X11_SCALE_FACTOR = "1.5";
};
font = {
normal = {
family = "UbuntuMono Nerd Font";
style = "Regular";
};
size = 10.0;
};
};
};
}