-
Notifications
You must be signed in to change notification settings - Fork 0
/
.alacritty.yml
516 lines (478 loc) · 11 KB
/
.alacritty.yml
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
key_bindings:
- { key: V, mods: Alt, action: Paste }
- { key: C, mods: Alt, action: Copy }
# Startup directory, unset or None for home directory
working_directory: None
# Make background slightly transparent
window.opacity: 1
shell:
program: /usr/bin/zsh
args:
- --login
- -c
- "tmux attach || tmux"
env:
TERM: xterm-256color
mouse_bindings:
- { mouse: Middle, action: PasteSelection }
mouse:
double_click: { threshold: 300 }
triple_click: { threshold: 300 }
hide_when_typing: true
scrolling:
history: 0
multiplier: 3
selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
save_to_clipboard: true
mouse_bindings:
- { mouse: Middle, action: PasteSelection }
cursor:
# - ▇ Block
# - _ Underline
# - | Beam
style:
shape: Block
blinking: Always
blink_interval: 500
window:
dynamic_title: true
dimensions:
columns: 120
lines: 35
decorations: full
live_config_reload: true
# Font configuration (changes require restart)
font:
size: 12.0
offset:
x: 0
y: 0
normal:
family: JetBrainsMono NF
style: Regular
bold:
family: JetBrainsMono NF
style: Bold
italic:
family: JetBrainsMono NF
style: Italic
schemes:
gnome_light: &gnome_light
primary:
foreground: '#171421'
background: '#ffffff'
normal:
black: '#171421'
red: '#c01c28'
green: '#26a269'
yellow: '#a2734c'
blue: '#12488b'
magenta: '#a347ba'
cyan: '#2aa1b3'
white: '#d0cfcc'
bright:
black: '#5e5c64'
red: '#f66151'
green: '#33d17a'
yellow: '#e9ad0c'
blue: '#2a7bde'
magenta: '#c061cb'
cyan: '#33c7de'
white: '#ffffff'
dracula: &dracula
primary:
background: '#282a36'
foreground: '#f8f8f2'
normal:
black: '#000000'
red: '#ff5555'
green: '#50fa7b'
yellow: '#f1fa8c'
blue: '#caa9fa'
magenta: '#ff79c6'
cyan: '#8be9fd'
white: '#bfbfbf'
bright:
black: '#575b70'
red: '#ff6e67'
green: '#5af78e'
yellow: '#f4f99d'
blue: '#caa9fa'
magenta: '#ff92d0'
cyan: '#9aedfe'
white: '#e6e6e6'
base16_default_dark: &base16_default_dark
primary:
background: '#181818'
foreground: '#d8d8d8'
cursor:
text: '#000000' #'#d8d8d8'
cursor: '#ffffff' #'#d8d8d8'
normal:
black: '#181818'
red: '#ab4642'
green: '#a1b56c'
yellow: '#f7ca88'
blue: '#7cafc2'
magenta: '#ba8baf'
cyan: '#86c1b9'
white: '#d8d8d8'
bright:
black: '#585858'
red: '#ab4642'
green: '#a1b56c'
yellow: '#f7ca88'
blue: '#7cafc2'
magenta: '#ba8baf'
cyan: '#86c1b9'
white: '#f8f8f8'
jellybeans: &jellybeans
primary:
background: '#161616'
foreground: '#e4e4e4'
normal:
black: '#a3a3a3'
red: '#e98885'
green: '#a3c38b'
yellow: '#ffc68d'
blue: '#a6cae2'
magenta: '#e7cdfb'
cyan: '#00a69f'
white: '#e4e4e4'
bright:
black: '#c8c8c8'
red: '#ffb2b0'
green: '#c8e2b9'
yellow: '#ffe1af'
blue: '#bddff7'
magenta: '#fce2ff'
cyan: '#0bbdb6'
white: '#feffff'
selection:
text: '#5963a2'
background: '#f6f6f6'
gruvbox_light: &gruvbox_light
primary:
background: '#fbf1c7'
foreground: '#3c3836'
normal:
black: '#fbf1c7'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#7c6f64'
bright:
black: '#928374'
red: '#9d0006'
green: '#79740e'
yellow: '#b57614'
blue: '#076678'
magenta: '#8f3f71'
cyan: '#427b58'
white: '#3c3836'
gruvbox_dark: &gruvbox_dark
primary:
background: '#282828'
foreground: '#ebdbb2'
normal:
black: '#282828'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#a89984'
bright:
black: '#928374'
red: '#fb4934'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#8ec07c'
white: '#ebdbb2'
pencil_light: &pencil_light
primary:
background: '0xf1f1f1'
foreground: '0x424242'
normal:
black: '0x212121'
red: '0xc30771'
green: '0x10a778'
yellow: '0xa89c14'
blue: '0x008ec4'
magenta: '0x523c79'
cyan: '0x20a5ba'
white: '0xe0e0e0'
bright:
black: '0x212121'
red: '0xfb007a'
green: '0x5fd7af'
yellow: '0xf3e430'
blue: '0x20bbfc'
magenta: '0x6855de'
cyan: '0x4fb8cc'
white: '0xf1f1f1'
solarized_light: &solarized_light
primary:
background: '0xfdf6e3'
foreground: '0x586e75'
normal:
black: '0x073642'
red: '0xdc322f'
green: '0x859900'
yellow: '0xb58900'
blue: '0x268bd2'
magenta: '0xd33682'
cyan: '0x2aa198'
white: '0xeee8d5'
bright:
black: '0x002b36'
red: '0xcb4b16'
green: '0x586e75'
yellow: '0x657b83'
blue: '0x839496'
magenta: '0x6c71c4'
cyan: '0x93a1a1'
white: '0xfdf6e3'
nord: &nord
primary:
background: '0x2E3440'
foreground: '0xD8DEE9'
cursor:
text: '0x2E3440'
cursor: '0xD8DEE9'
normal:
black: '0x3B4252'
red: '0xBF616A'
green: '0xA3BE8C'
yellow: '0xEBCB8B'
blue: '0x81A1C1'
magenta: '0xB48EAD'
cyan: '0x88C0D0'
white: '0xE5E9F0'
bright:
black: '0x4C566A'
red: '0xBF616A'
green: '0xA3BE8C'
yellow: '0xEBCB8B'
blue: '0x81A1C1'
magenta: '0xB48EAD'
cyan: '0x8FBCBB'
white: '0xECEFF4'
papercolor_light: &papercolor_light
primary:
background: '0xeeeeee'
foreground: '0x878787'
cursor:
text: '0xeeeeee'
cursor: '0x878787'
normal:
black: '0xeeeeee'
red: '0xaf0000'
green: '0x008700'
yellow: '0x5f8700'
blue: '0x0087af'
magenta: '0x878787'
cyan: '0x005f87'
white: '0x444444'
bright:
black: '0xbcbcbc'
red: '0xd70000'
green: '0xd70087'
yellow: '0x8700af'
blue: '0xd75f00'
magenta: '0xd75f00'
cyan: '0x005faf'
white: '0x005f87'
ayu_dark: &ayu_dark
primary:
background: '#0A0E14'
foreground: '#B3B1AD'
normal:
black: '#01060E'
red: '#EA6C73'
green: '#91B362'
yellow: '#F9AF4F'
blue: '#53BDFA'
magenta: '#FAE994'
cyan: '#90E1C6'
white: '#C7C7C7'
bright:
black: '#686868'
red: '#F07178'
green: '#C2D94C'
yellow: '#FFB454'
blue: '#59C2FF'
magenta: '#FFEE99'
cyan: '#95E6CB'
white: '#FFFFFF'
tender: &tender
primary:
background: '0x282828'
foreground: '0xeeeeee'
normal:
black: '0x282828'
red: '0xf43753'
green: '0xc9d05c'
yellow: '0xffc24b'
blue: '0xb3deef'
magenta: '0xd3b987'
cyan: '0x73cef4'
white: '0xeeeeee'
bright:
black: '0x4c4c4c'
red: '0xf43753'
green: '0xc9d05c'
yellow: '0xffc24b'
blue: '0xb3deef'
magenta: '0xd3b987'
cyan: '0x73cef4'
white: '0xfeffff'
nord:
primary:
background: '#2e3440'
foreground: '#d8dee9'
dim_foreground: '#a5abb6'
cursor:
text: '#2e3440'
cursor: '#d8dee9'
vi_mode_cursor:
text: '#2e3440'
cursor: '#d8dee9'
selection:
text: CellForeground
background: '#4c566a'
search:
matches:
foreground: CellBackground
background: '#88c0d0'
bar:
background: '#434c5e'
foreground: '#d8dee9'
normal:
black: '#3b4252'
red: '#bf616a'
green: '#a3be8c'
yellow: '#ebcb8b'
blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#88c0d0'
white: '#e5e9f0'
bright:
black: '#4c566a'
red: '#bf616a'
green: '#a3be8c'
yellow: '#ebcb8b'
blue: '#81a1c1'
magenta: '#b48ead'
cyan: '#8fbcbb'
white: '#eceff4'
dim:
black: '#373e4d'
red: '#94545d'
green: '#809575'
yellow: '#b29e75'
blue: '#68809a'
magenta: '#8c738c'
cyan: '#6d96a5'
white: '#aeb3bb'
cobalt2_light: &cobalt2_light
cursor:
text: '#fefff2'
cursor: '#f0cc09'
selection:
text: '#b5b5b5'
background: '#18354f'
primary:
background: '#132738'
foreground: '#ffffff'
normal:
black: '#000000'
red: '#ff0000'
green: '#38de21'
yellow: '#ffe50a'
blue: '#1460d2'
magenta: '#ff005d'
cyan: '#00bbbb'
white: '#bbbbbb'
bright:
black: '#555555'
red: '#f40e17'
green: '#3bd01d'
yellow: '#edc809'
blue: '#5555ff'
magenta: '#ff55ff'
cyan: '#6ae3fa'
white: '#ffffff'
spacemacs: &spacemacs
# Default colors
primary:
background: '0x1f2022'
foreground: '0xa3a3a3'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x1f2022'
cursor: '0xa3a3a3'
# Normal colors
normal:
black: '0x1f2022'
red: '0xf2241f'
green: '0x67b11d'
yellow: '0xb1951d'
blue: '0x4f97d7'
magenta: '0xa31db1'
cyan: '0x2d9574'
white: '0xa3a3a3'
# Bright colors
bright:
black: '0x585858'
red: '0xf2241f'
green: '0x67b11d'
yellow: '0xb1951d'
blue: '0x4f97d7'
magenta: '0xa31db1'
cyan: '0x2d9574'
white: '0xf8f8f8'
indexed_colors:
- { index: 16, color: '0xffa500' }
- { index: 17, color: '0xb03060' }
- { index: 18, color: '0x282828' }
- { index: 19, color: '0x444155' }
- { index: 20, color: '0xb8b8b8' }
- { index: 21, color: '0xe8e8e8' }
alacritty-night-owl-colors: &alacritty-night-owl-colors
# Default colors
primary:
background: '0x011627'
foreground: '0xd6deeb'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xffffff'
cursor: '0x7e57c2'
# Normal colors
normal:
black: '0x000000'
red: '0xef5350'
green: '0x22da6e'
yellow: '0xaddb67'
blue: '0x82aaff'
magenta: '0xc792ea'
cyan: '0x21c7a8'
white: '0xffffff'
# Bright colors
bright:
black: '0x575656'
red: '0xef5350'
green: '0x22da6e'
yellow: '0xffeb95'
blue: '0x82aaff'
magenta: '0xc792ea'
cyan: '0x7fdbca'
white: '0xffffff'
colors: *base16_default_dark