-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalacritty.toml
More file actions
72 lines (58 loc) · 1.18 KB
/
alacritty.toml
File metadata and controls
72 lines (58 loc) · 1.18 KB
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
[window]
padding = { x = 1, y = 1 }
opacity = 0.75
# blur = true
[font]
size = 12
normal = { family = "BerkeleyMono", style = "regular" }
[keyboard]
# <cntrl+shift+t> --> open new window in same directory
bindings = [
{ key = "t", mods = "Control|Shift", action = "SpawnNewInstance" }
]
# Default colors
[colors.primary]
background = '0x1b181b'
foreground = '0xab9bab'
# Colors the cursor will use if `custom_cursor_colors` is true
[colors.cursor]
text = '0x1b181b'
cursor = '0xab9bab'
# Normal colors
[colors.normal]
black = '0x1b181b'
red = '0xca402b'
green = '0x918b3b'
yellow = '0xbb8a35'
blue = '0x516aec'
magenta = '0x7b59c0'
cyan = '0x159393'
white = '0xab9bab'
# Bright colors
[colors.bright]
black = '0x776977'
red = '0xca402b'
green = '0x918b3b'
yellow = '0xbb8a35'
blue = '0x516aec'
magenta = '0x7b59c0'
cyan = '0x159393'
white = '0xf7f3f7'
[[colors.indexed_colors]]
index = 16
color = "0xa65926"
[[colors.indexed_colors]]
index = 17
color = "0xcc33cc"
[[colors.indexed_colors]]
index = 18
color = "0x292329"
[[colors.indexed_colors]]
index = 19
color = "0x695d69"
[[colors.indexed_colors]]
index = 20
color = "0x9e8f9e"
[[colors.indexed_colors]]
index = 21
color = "0xd8cad8"