-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalacritty.toml
63 lines (51 loc) · 908 Bytes
/
alacritty.toml
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
[colors]
indexed_colors = [
{ color = "#b6927b", index = 16 },
{ color = "#b98d7b", index = 17 },
]
[colors.bright]
black = "#a6a69c"
blue = "#7fb4ca"
cyan = "#7aa89f"
green = "#87a987"
magenta = "#938aa9"
red = "#e46876"
white = "#c5c9c5"
yellow = "#e6c384"
[colors.normal]
black = "#0d0c0c"
blue = "#8ba4b0"
cyan = "#8ea4a2"
green = "#8a9a7b"
magenta = "#a292a3"
red = "#c4746e"
white = "#c8c093"
yellow = "#c4b28a"
[colors.primary]
background = "#12120f"
foreground = "#deddd3"
[colors.selection]
background = "#2d4f67"
foreground = "#c8c093"
[cursor.style]
blinking = "Off"
shape = "Block"
[font.bold]
style = "Semibold"
[font.bold_italic]
style = "Semibold"
[font.glyph_offset]
x = 0
y = 0
[font.italic]
style = "Regular"
[font.normal]
family = "Source Code Pro for Powerline"
style = "Regular"
[font.offset]
x = 0
y = 0
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control"