tangled
alpha
login
or
join now
tjh.dev
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
alacritty: add config
tjh.dev
9 months ago
0550bfd9
a74038bf
verified
This commit was signed with the committer's
known signature
.
tjh.dev
SSH Key Fingerprint:
SHA256:RhG+o7Aj/xulPOqGBYDE7G2RZdwS1M7RWqL3oo9BYCY=
+37
1 changed file
expand all
collapse all
unified
split
.config
alacritty
alacritty.toml
+37
.config/alacritty/alacritty.toml
···
1
1
+
[font]
2
2
+
normal = { family = "MonoLisa" }
3
3
+
size = 13.5
4
4
+
5
5
+
[keyboard]
6
6
+
bindings = [
7
7
+
{ key = "N", mods = "Control|Shift", action = "CreateNewWindow" }
8
8
+
]
9
9
+
10
10
+
[mouse]
11
11
+
hide_when_typing = true
12
12
+
13
13
+
[colors.primary]
14
14
+
background = "#1d2021"
15
15
+
foreground = "#d4be98"
16
16
+
17
17
+
[colors.normal]
18
18
+
black = "#3c3836"
19
19
+
white = "#ddc7a1"
20
20
+
red = "#ea6962"
21
21
+
yellow = "#d8a657"
22
22
+
green = "#a9b665"
23
23
+
cyan = "#89b482"
24
24
+
blue = "#7daea3"
25
25
+
magenta = "#d3869b"
26
26
+
27
27
+
[colors.bright]
28
28
+
# black = "#3c3836"
29
29
+
black = "#6c6866"
30
30
+
white = "#ddc7a1"
31
31
+
red = "#ea6962"
32
32
+
yellow = "#d8a657"
33
33
+
green = "#a9b665"
34
34
+
cyan = "#89b482"
35
35
+
blue = "#7daea3"
36
36
+
magenta = "#d3869b"
37
37
+