summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/alacritty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/gkleen@sif/alacritty.nix')
-rw-r--r--accounts/gkleen@sif/alacritty.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/alacritty.nix b/accounts/gkleen@sif/alacritty.nix
new file mode 100644
index 00000000..3d69d292
--- /dev/null
+++ b/accounts/gkleen@sif/alacritty.nix
@@ -0,0 +1,43 @@
1{
2 font.size = 5.5;
3
4 window.dynamic_padding = true;
5
6 colors = {
7 primary.foreground = "#d9d9d9";
8 primary.background = "#000000";
9 cursor.text = "#000000";
10 cursor.cursor = "#d9d9d9";
11
12 normal = {
13 black = "#000000";
14 red = "#bf4949";
15 green = "#9fb346";
16 yellow = "#e69650";
17 blue = "#759fbf";
18 magenta = "#9b79a6";
19 cyan = "#79a69b";
20 white = "#d9d9d9";
21 };
22
23 bright = {
24 black = "#757a80";
25 red = "#e66e6e";
26 green = "#cbd676";
27 yellow = "#ffa74f";
28 blue = "#98b8d9";
29 magenta = "#ceadd9";
30 cyan = "#a3d9ce";
31 white = "#ffffff";
32 };
33 };
34
35 scrolling.history = 0;
36
37 bell = {
38 duration = 50;
39 color = "#000000";
40 };
41
42 hints.alphabet = "uhetonas";
43}