Skip to content

Commit b1af914

Browse files
committed
migrate alacritty yml to toml
1 parent 480799a commit b1af914

File tree

3 files changed

+351
-1
lines changed

3 files changed

+351
-1
lines changed

.config/alacritty/alacritty.toml

+348
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,348 @@
1+
live_config_reload = true
2+
3+
[bell]
4+
animation = "EaseOutExpo"
5+
duration = 1
6+
7+
[colors]
8+
draw_bold_text_with_bright_colors = true
9+
10+
[colors.bright]
11+
black = "#958f8c"
12+
blue = "#8F744C"
13+
cyan = "#7E8355"
14+
green = "#C63939"
15+
magenta = "#EC4848"
16+
red = "#B33535"
17+
white = "#d5cdc9"
18+
yellow = "#E4393A"
19+
20+
[colors.cursor]
21+
cursor = "#d5cdc9"
22+
text = "#d5cdc9"
23+
24+
[colors.normal]
25+
black = "#0a0f0f"
26+
blue = "#8F744C"
27+
cyan = "#7E8355"
28+
green = "#C63939"
29+
magenta = "#EC4848"
30+
red = "#B33535"
31+
white = "#d5cdc9"
32+
yellow = "#E4393A"
33+
34+
[colors.primary]
35+
background = "#0a0f0f"
36+
foreground = "#d5cdc9"
37+
38+
[env]
39+
TERM = "xterm-256color"
40+
41+
[font]
42+
size = 22.0
43+
44+
[font.bold]
45+
family = "Source Code Pro"
46+
style = "Bold"
47+
48+
[font.glyph_offset]
49+
x = 0
50+
y = 0
51+
52+
[font.italic]
53+
family = "Source Code Pro"
54+
style = "Italic"
55+
56+
[font.normal]
57+
family = "Source Code Pro"
58+
style = "Regular"
59+
60+
[font.offset]
61+
x = 0
62+
y = 0
63+
64+
[[keyboard.bindings]]
65+
action = "Paste"
66+
key = "V"
67+
mods = "Control|Shift"
68+
69+
[[keyboard.bindings]]
70+
action = "Copy"
71+
key = "C"
72+
mods = "Control|Shift"
73+
74+
[[keyboard.bindings]]
75+
action = "IncreaseFontSize"
76+
key = "Minus"
77+
mods = "Control"
78+
79+
[[keyboard.bindings]]
80+
action = "DecreaseFontSize"
81+
key = "Plus"
82+
mods = "Control"
83+
84+
[[keyboard.bindings]]
85+
action = "ResetFontSize"
86+
key = "Plus"
87+
mods = "Control|Shift"
88+
89+
[[keyboard.bindings]]
90+
action = "Quit"
91+
key = "Q"
92+
mods = "Command"
93+
94+
[[keyboard.bindings]]
95+
action = "Quit"
96+
key = "W"
97+
mods = "Command"
98+
99+
[[keyboard.bindings]]
100+
action = "PasteSelection"
101+
key = "Insert"
102+
mods = "Shift"
103+
104+
[[keyboard.bindings]]
105+
chars = "\u001BOH"
106+
key = "Home"
107+
mode = "AppCursor"
108+
109+
[[keyboard.bindings]]
110+
chars = "\u001B[H"
111+
key = "Home"
112+
mode = "~AppCursor"
113+
114+
[[keyboard.bindings]]
115+
chars = "\u001BOF"
116+
key = "End"
117+
mode = "AppCursor"
118+
119+
[[keyboard.bindings]]
120+
chars = "\u001B[F"
121+
key = "End"
122+
mode = "~AppCursor"
123+
124+
[[keyboard.bindings]]
125+
chars = "\u001B[5;2~"
126+
key = "PageUp"
127+
mods = "Shift"
128+
129+
[[keyboard.bindings]]
130+
chars = "\u001B[5;5~"
131+
key = "PageUp"
132+
mods = "Control"
133+
134+
[[keyboard.bindings]]
135+
chars = "\u001B[5~"
136+
key = "PageUp"
137+
138+
[[keyboard.bindings]]
139+
chars = "\u001B[6;2~"
140+
key = "PageDown"
141+
mods = "Shift"
142+
143+
[[keyboard.bindings]]
144+
chars = "\u001B[6;5~"
145+
key = "PageDown"
146+
mods = "Control"
147+
148+
[[keyboard.bindings]]
149+
chars = "\u001B[6~"
150+
key = "PageDown"
151+
152+
[[keyboard.bindings]]
153+
chars = "\u001B[1;2D"
154+
key = "Left"
155+
mods = "Shift"
156+
157+
[[keyboard.bindings]]
158+
chars = "\u001B[1;5D"
159+
key = "Left"
160+
mods = "Control"
161+
162+
[[keyboard.bindings]]
163+
chars = "\u001B[1;3D"
164+
key = "Left"
165+
mods = "Alt"
166+
167+
[[keyboard.bindings]]
168+
chars = "\u001B[D"
169+
key = "Left"
170+
mode = "~AppCursor"
171+
172+
[[keyboard.bindings]]
173+
chars = "\u001BOD"
174+
key = "Left"
175+
mode = "AppCursor"
176+
177+
[[keyboard.bindings]]
178+
chars = "\u001B[1;2C"
179+
key = "Right"
180+
mods = "Shift"
181+
182+
[[keyboard.bindings]]
183+
chars = "\u001B[1;5C"
184+
key = "Right"
185+
mods = "Control"
186+
187+
[[keyboard.bindings]]
188+
chars = "\u001B[1;3C"
189+
key = "Right"
190+
mods = "Alt"
191+
192+
[[keyboard.bindings]]
193+
chars = "\u001B[C"
194+
key = "Right"
195+
mode = "~AppCursor"
196+
197+
[[keyboard.bindings]]
198+
chars = "\u001BOC"
199+
key = "Right"
200+
mode = "AppCursor"
201+
202+
[[keyboard.bindings]]
203+
chars = "\u001B[1;2A"
204+
key = "Up"
205+
mods = "Shift"
206+
207+
[[keyboard.bindings]]
208+
chars = "\u001B[1;5A"
209+
key = "Up"
210+
mods = "Control"
211+
212+
[[keyboard.bindings]]
213+
chars = "\u001B[1;3A"
214+
key = "Up"
215+
mods = "Alt"
216+
217+
[[keyboard.bindings]]
218+
chars = "\u001B[A"
219+
key = "Up"
220+
mode = "~AppCursor"
221+
222+
[[keyboard.bindings]]
223+
chars = "\u001BOA"
224+
key = "Up"
225+
mode = "AppCursor"
226+
227+
[[keyboard.bindings]]
228+
chars = "\u001B[1;2B"
229+
key = "Down"
230+
mods = "Shift"
231+
232+
[[keyboard.bindings]]
233+
chars = "\u001B[1;5B"
234+
key = "Down"
235+
mods = "Control"
236+
237+
[[keyboard.bindings]]
238+
chars = "\u001B[1;3B"
239+
key = "Down"
240+
mods = "Alt"
241+
242+
[[keyboard.bindings]]
243+
chars = "\u001B[B"
244+
key = "Down"
245+
mode = "~AppCursor"
246+
247+
[[keyboard.bindings]]
248+
chars = "\u001BOB"
249+
key = "Down"
250+
mode = "AppCursor"
251+
252+
[[keyboard.bindings]]
253+
chars = "\u001B[Z"
254+
key = "Tab"
255+
mods = "Shift"
256+
257+
[[keyboard.bindings]]
258+
chars = "\u001BOP"
259+
key = "F1"
260+
261+
[[keyboard.bindings]]
262+
chars = "\u001BOQ"
263+
key = "F2"
264+
265+
[[keyboard.bindings]]
266+
chars = "\u001BOR"
267+
key = "F3"
268+
269+
[[keyboard.bindings]]
270+
chars = "\u001BOS"
271+
key = "F4"
272+
273+
[[keyboard.bindings]]
274+
chars = "\u001B[15~"
275+
key = "F5"
276+
277+
[[keyboard.bindings]]
278+
chars = "\u001B[17~"
279+
key = "F6"
280+
281+
[[keyboard.bindings]]
282+
chars = "\u001B[18~"
283+
key = "F7"
284+
285+
[[keyboard.bindings]]
286+
chars = "\u001B[19~"
287+
key = "F8"
288+
289+
[[keyboard.bindings]]
290+
chars = "\u001B[20~"
291+
key = "F9"
292+
293+
[[keyboard.bindings]]
294+
chars = "\u001B[21~"
295+
key = "F10"
296+
297+
[[keyboard.bindings]]
298+
chars = "\u001B[23~"
299+
key = "F11"
300+
301+
[[keyboard.bindings]]
302+
chars = "\u001B[24~"
303+
key = "F12"
304+
305+
[[keyboard.bindings]]
306+
chars = "\u007F"
307+
key = "Back"
308+
309+
[[keyboard.bindings]]
310+
chars = "\u001B\u007F"
311+
key = "Back"
312+
mods = "Alt"
313+
314+
[[keyboard.bindings]]
315+
chars = "\u001B[2~"
316+
key = "Insert"
317+
318+
[[keyboard.bindings]]
319+
chars = "\u001B[3~"
320+
key = "Delete"
321+
322+
[mouse]
323+
hide_when_typing = false
324+
325+
[[mouse.bindings]]
326+
action = "PasteSelection"
327+
mouse = "Middle"
328+
329+
# [mouse.double_click]
330+
# threshold = 300
331+
332+
# [mouse.triple_click]
333+
# threshold = 300
334+
335+
[selection]
336+
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
337+
338+
[window]
339+
decorations = "none"
340+
opacity = 1.0
341+
342+
[window.dimensions]
343+
columns = 80
344+
lines = 24
345+
346+
[window.padding]
347+
x = 2
348+
y = 2

.config/alacritty/alacritty.yml

-1
This file was deleted.

.config/zed/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"features": {
3+
"inline_completion_provider": "none"
4+
},
25
"vim_mode": true,
36
"ui_font_size": 30,
47
"buffer_font_size": 24,

0 commit comments

Comments
 (0)