-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalacritty.toml
107 lines (88 loc) · 1.89 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# live_config_reload = true
[window]
startup_mode = "Maximized"
padding = { x = 2, y = 2}
[scrolling]
history = 10000
multiplier = 10
[font]
normal = {family = "CaskaydiaCove NF", style = "Regular"}
bold = {family = "CaskaydiaCove NF", style = "Bold"}
italic = {family = "CaskaydiaCove NF", style = "Italic"}
bold_italic = {family = "CaskaydiaCove NF", style = "Bold Italic"}
size = 13
offset = { x = 0, y = 0}
glyph_offset = { x = 0, y = 0}
[colors]
draw_bold_text_with_bright_colors = true
[colors.primary]
background = "#24273a"
foreground = "#cad3f5"
dim_foreground = "#8087a2"
bright_foreground = "#cad3f5"
[colors.cursor]
text = "#24273a"
cursor = "#f4dbd6"
[colors.vi_mode_cursor]
text = "#24273a"
cursor = "#b7bdf8"
[colors.search.matches]
foreground = "#24273a"
background = "#a5adcb"
[colors.search.focused_match]
foreground = "#24273a"
background = "#a6da95"
[colors.footer_bar]
foreground = "#24273a"
background = "#a5adcb"
[colors.hints.start]
foreground = "#24273a"
background = "#eed49f"
[colors.hints.end]
foreground = "#24273a"
background = "#a5adcb"
[colors.selection]
text = "#24273a"
background = "#f4dbd6"
[colors.normal]
black = "#494d64"
red = "#ed8796"
green = "#a6da95"
yellow = "#eed49f"
blue = "#8aadf4"
magenta = "#f5bde6"
cyan = "#8bd5ca"
white = "#b8c0e0"
[colors.bright]
black = "#5b6078"
red = "#ed8796"
green = "#a6da95"
yellow = "#eed49f"
blue = "#8aadf4"
magenta = "#f5bde6"
cyan = "#8bd5ca"
white = "#a5adcb"
[colors.dim]
black = "#494d64"
red = "#ed8796"
green = "#a6da95"
yellow = "#eed49f"
blue = "#8aadf4"
magenta = "#f5bde6"
cyan = "#8bd5ca"
white = "#b8c0e0"
[[colors.indexed_colors]]
index = 16
color = "#f5a97f"
[[colors.indexed_colors]]
index = 17
color = "#f4dbd6"
[cursor]
unfocused_hollow = true
[selection]
save_to_clipboard = true
[keyboard]
bindings = [
{key = "C", mods = "Command|Shift", action = "Copy"},
{key = "V", mods = "Command|Shift", action = "Paste"}
]