-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacritty.yml
188 lines (154 loc) · 4.05 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
# tabs are not allowed im yaml files so im stuck with this awful fucking garbage
# to whoever that made that decision: i hope both sides of your pillow are uncomfortably warm and that your neighborhoods HOA is extremely annoying
window:
dynamic_title: true
dimensions:
columns: 0
lines: 0
position:
x: 0
y: 0
#startup_mode: SimpleFullscreen
#position:
#x: 0
#y: 0
# padding:
# x: 35
# y: 35
dynamic_padding: false
decorations: none
scrolling:
history: 50000
multiplier: 3
font:
# normal:
# family: SauceCodePro NF
# style: Regular
# bold:
# family: SauceCodePro NF
# style: Bold
# italic:
# family: SauceCodePro NF
# style: Bold Italic
# size: 15.0
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
use_thin_strokes: true
draw_bold_text_with_bright_colors: true
schemes:
srcery: &srcery
# Default colors
primary:
background: '#000000' # changed
foreground: '#fce8c3'
# Cursor colors
cursor:
text: CellBackground
cursor: '#fbb829'
# Normal colors
normal:
black: '#1c1b19'
red: '#ef2f27'
green: '#519f50'
yellow: '#fbb829'
blue: '#2c78bf'
magenta: '#e02c6d'
cyan: '#0aaeb3'
white: '#baa67f'
# Bright colors
bright:
black: '#918175'
red: '#f75341'
green: '#98bc37'
yellow: '#fed06e'
blue: '#68a8e4'
magenta: '#ff5c8f'
cyan: '#2be4d0'
white: '#fce8c3'
onedark: &onedark
primary:
background: '0x000000'
foreground: '0xabb2bf'
bright_foreground: '0xe6efff'
# Cursor colors
cursor:
text: CellBackground
cursor: '#fbb829'
# Normal colors
normal:
black: '#1c1b19'
red: '#ef2f27'
green: '#519f50'
yellow: '#fbb829'
blue: '#2c78bf'
magenta: '#e02c6d'
cyan: '#0aaeb3'
white: '#baa67f'
# Bright colors
bright:
black: '#918175'
red: '#f75341'
green: '#98bc37'
yellow: '#fed06e'
blue: '#68a8e4'
magenta: '#ff5c8f'
cyan: '#2be4d0'
white: '#fce8c3'
monokai-pro: &monokai-pro
colors:
primary:
background: '#000000'
foreground: '#d6d6d6'
dim_foreground: '#dbdbdb'
bright_foreground: '#d9d9d9'
dim_background: '#202020'
bright_background: '#3a3a3a'
cursor:
text: '#2c2c2c'
cursor: '#d9d9d9'
normal:
black: '#1c1c1c'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#cacaca'
bright:
black: '#636363'
red: '#bc5653'
green: '#909d63'
yellow: '#ebc17a'
blue: '#7eaac7'
magenta: '#aa6292'
cyan: '#86d3ce'
white: '#f7f7f7'
dim:
black: '#232323'
red: '#74423f'
green: '#5e6547'
yellow: '#8b7653'
blue: '#556b79'
magenta: '#6e4962'
cyan: '#5c8482'
white: '#828282'
colors: *onedark
background_opacity: 0.90
key_bindings:
- { key: Return, mods: Control|Shift, action: SpawnNewInstance }
- { key: J, mods: Alt, chars: "\x1bj" }
- { key: K, mods: Alt, chars: "\x1bk" }
- { key: H, mods: Alt, chars: "\x1bh" }
- { key: L, mods: Alt, chars: "\x1bl" }
- { key: T, mods: Alt, chars: "\x1bt" }
- { key: W, mods: Alt|Shift, chars: "\x1bW" }
- { key: P, mods: Alt, chars: "\x1bp" }
- { key: N, mods: Alt, chars: "\x1bn" }
- { key: D, mods: Alt, chars: "\x1bd" }
- { key: E, mods: Alt, chars: "\x1be" }
- { key: X, mods: Alt|Shift, chars: "\x1bX" }