-
Notifications
You must be signed in to change notification settings - Fork 0
/
alacritty-linux.yml
177 lines (149 loc) · 5.74 KB
/
alacritty-linux.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
env:
TERM: xterm-256color
scrolling:
history: 10000
multiplier: 1
faux_multiplier: 1
auto_scroll: false
window:
dimensions:
columns: 160
lines: 50
padding:
x: 2
y: 2
dynamic_padding: true
decorations: full
start_maximized: true
tabspaces: 4
font:
normal:
family: monofur for Powerline
style: Regular
bold:
family: monofur for Powerline
style: Bold
italic:
family: monofur for Powerline
style: Italic
size: 9.5
offset:
x: 0
y: 0
glyph_offset:
x: 0
y: 0
use_thin_strokes: true
render_timer: false
persistent_logging: false
draw_bold_text_with_bright_colors: true
# fairyfloss !!
colors:
# Default colors
primary:
background: '#5a5475'
foreground: '#f8f8f2'
cursor:
text: '#f8f8f2'
cursor: '#c7b7c7'
# Normal colors
normal:
black: '#3b3a32'
red: '#f1756f'
green: '#6de874'
yellow: '#e6c000'
blue: '#a381ff'
magenta: '#ff87b1'
cyan: '#7ef5b8'
white: '#c7b7c7'
# Bright colors
bright:
black: '#685868'
red: '#ff9f9a'
green: '#7bfa81'
yellow: '#ffea00'
blue: '#c5a3ff'
magenta: '#ffb8d1'
cyan: '#c2ffdf'
white: '#ffefff'
indexed_colors: []
visual_bell:
animation: EaseOutExpo
duration: 100
color: '0x073642'
background_opacity: 1.0
key_bindings:
- { key: V, mods: Control|Shift, action: Paste }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Q, mods: Control, action: Quit }
- { key: W, mods: Control, action: Quit }
- { key: Insert, mods: Shift, action: PasteSelection }
- { key: Home, chars: "\x1bOH", mode: AppCursor }
- { key: Home, chars: "\x1b[H", mode: ~AppCursor }
- { key: End, chars: "\x1bOF", mode: AppCursor }
- { key: End, chars: "\x1b[F", mode: ~AppCursor }
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Subtract, mods: Control, action: DecreaseFontSize }
- { key: PageUp, mods: Shift, chars: "\x1b[5;2~" }
- { key: PageUp, mods: Control, chars: "\x1b[5;5~" }
- { key: PageUp, chars: "\x1b[5~" }
- { key: PageDown, mods: Shift, chars: "\x1b[6;2~" }
- { key: PageDown, mods: Control, chars: "\x1b[6;5~" }
- { key: PageDown, chars: "\x1b[6~" }
- { key: Left, mods: Shift, chars: "\x1b[1;2D" }
- { key: Left, mods: Control, chars: "\x1b[1;5D" }
- { key: Left, mods: Alt, chars: "\x1b[1;3D" }
- { key: Left, chars: "\x1b[D", mode: ~AppCursor }
- { key: Left, chars: "\x1bOD", mode: AppCursor }
- { key: Right, mods: Shift, chars: "\x1b[1;2C" }
- { key: Right, mods: Control, chars: "\x1b[1;5C" }
- { key: Right, mods: Alt, chars: "\x1b[1;3C" }
- { key: Right, chars: "\x1b[C", mode: ~AppCursor }
- { key: Right, chars: "\x1bOC", mode: AppCursor }
- { key: Up, mods: Shift, chars: "\x1b[1;2A" }
- { key: Up, mods: Control, chars: "\x1b[1;5A" }
- { key: Up, mods: Alt, chars: "\x1b[1;3A" }
- { key: Up, chars: "\x1b[A", mode: ~AppCursor }
- { key: Up, chars: "\x1bOA", mode: AppCursor }
- { key: Down, mods: Shift, chars: "\x1b[1;2B" }
- { key: Down, mods: Control, chars: "\x1b[1;5B" }
- { key: Down, mods: Alt, chars: "\x1b[1;3B" }
- { key: Down, chars: "\x1b[B", mode: ~AppCursor }
- { key: Down, chars: "\x1bOB", mode: AppCursor }
- { key: Tab, mods: Shift, chars: "\x1b[Z" }
- { key: F1, chars: "\x1bOP" }
- { key: F2, chars: "\x1bOQ" }
- { key: F3, chars: "\x1bOR" }
- { key: F4, chars: "\x1bOS" }
- { key: F5, chars: "\x1b[15~" }
- { key: F6, chars: "\x1b[17~" }
- { key: F7, chars: "\x1b[18~" }
- { key: F8, chars: "\x1b[19~" }
- { key: F9, chars: "\x1b[20~" }
- { key: F10, chars: "\x1b[21~" }
- { key: F11, chars: "\x1b[23~" }
- { key: F12, chars: "\x1b[24~" }
- { key: Back, chars: "\x7f" }
- { key: Back, mods: Alt, chars: "\x1b\x7f" }
- { key: Insert, chars: "\x1b[2~" }
- { key: Delete, chars: "\x1b[3~" }
mouse_bindings:
- { mouse: Middle, action: PasteSelection }
mouse:
double_click: { threshold: 300 }
triple_click: { threshold: 300 }
hide_when_typing: true
url:
modifiers: Control
selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
cursor:
style: Block
unfocused_hollow: true
live_config_reload: true
dynamic_title: true
shell:
program: /bin/zsh
args:
- --login