-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalacritty.toml
119 lines (95 loc) · 1.77 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
108
109
110
111
112
113
114
115
116
117
118
119
[[colors.indexed_colors]]
color = "#EF9F76"
index = 16
[[colors.indexed_colors]]
color = "#F2D5CF"
index = 17
[colors.bright]
black = "#626880"
blue = "#8CAAEE"
cyan = "#81C8BE"
green = "#A6D189"
magenta = "#F4B8E4"
red = "#E78284"
white = "#A5ADCE"
yellow = "#E5C890"
[colors.cursor]
cursor = "#F2D5CF"
text = "#303446"
[colors.dim]
black = "#51576D"
blue = "#8CAAEE"
cyan = "#81C8BE"
green = "#A6D189"
magenta = "#F4B8E4"
red = "#E78284"
white = "#B5BFE2"
yellow = "#E5C890"
[colors.hints.end]
background = "#A5ADCE"
foreground = "#303446"
[colors.hints.start]
background = "#E5C890"
foreground = "#303446"
[colors.normal]
black = "#51576D"
blue = "#8CAAEE"
cyan = "#81C8BE"
green = "#A6D189"
magenta = "#F4B8E4"
red = "#E78284"
white = "#B5BFE2"
yellow = "#E5C890"
[colors.primary]
background = "#303446"
bright_foreground = "#C6D0F5"
dim_foreground = "#C6D0F5"
foreground = "#C6D0F5"
[colors.search.focused_match]
background = "#A6D189"
foreground = "#303446"
[colors.search.matches]
background = "#A5ADCE"
foreground = "#303446"
[colors.selection]
background = "#F2D5CF"
text = "#303446"
[colors.vi_mode_cursor]
cursor = "#BABBF1"
text = "#303446"
[font]
size = 12.0
[font.bold]
family = "JetBrainsMono NF"
style = "Bold"
[font.bold_italic]
family = "JetBrainsMono NF"
style = "Bold Italic"
[font.italic]
family = "JetBrainsMono NF"
style = "Italic"
[font.normal]
family = "JetBrainsMono NF"
style = "Regular"
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Control|Shift"
[[mouse.bindings]]
action = "PasteSelection"
mouse = "Middle"
[scrolling]
history = 20000
multiplier = 3
[selection]
save_to_clipboard = true
[window]
decorations = "none"
dynamic_padding = false
[window.padding]
x = 15
y = 10