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
|
#############
# alacritty #
#############
env:
TERM: xterm-256color
# https://wiki.archlinux.org/title/Alacritty#Different_font_size_on_multiple_monitors
WINIT_X11_SCALE_FACTOR: "1"
# font
font:
size: 9.0
offset:
x: 0
y: 0
normal:
family: FiraCode
style: Regular
italic:
family: FiraCode
style: Light
bold:
family: FiraCode
style: Bold
key_bindings:
- { key: J, mods: Alt, chars: "\e[B" }
- { key: K, mods: Alt, chars: "\e[A" }
- { key: J, mods: Alt|Shift, action: ScrollHalfPageDown }
- { key: K, mods: Alt|Shift, action: ScrollHalfPageUp }
- { key: Plus, mods: Alt|Shift, action: IncreaseFontSize }
- { key: Minus, mods: Alt, action: DecreaseFontSize }
- { key: Key0, mods: Alt, action: ResetFontSize }
# gruvbox_dark: https://github.com/eendroroy/alacritty-theme/blob/master/schemes.yaml
colors:
primary:
# hard contrast: background = '0x1d2021'
background: '0x282828'
# soft contrast: background = '0x32302f'
foreground: '0xebdbb2'
normal:
black: '0x282828'
red: '0xcc241d'
green: '0x98971a'
yellow: '0xd79921'
blue: '0x458588'
magenta: '0xb16286'
cyan: '0x689d6a'
white: '0xa89984'
bright:
black: '0x928374'
red: '0xfb4934'
green: '0xb8bb26'
yellow: '0xfabd2f'
blue: '0x83a598'
magenta: '0xd3869b'
cyan: '0x8ec07c'
white: '0xebdbb2'
# # colorscheme (Dracula)
# colors:
# # Default colors
# primary:
# background: '#282a36'
# foreground: '#f8f8f2'
# # Normal colors
# normal:
# black: '#000000'
# red: '#ff5555'
# green: '#50fa7b'
# yellow: '#f1fa8c'
# blue: '#caa9fa'
# magenta: '#ff79c6'
# cyan: '#8be9fd'
# white: '#bfbfbf'
# # Bright colors
# bright:
# black: '#575b70'
# red: '#ff6e67'
# green: '#5af78e'
# yellow: '#f4f99d'
# blue: '#caa9fa'
# magenta: '#ff92d0'
# cyan: '#9aedfe'
# white: '#e6e6e6'
|