-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalacritty.yml
63 lines (51 loc) · 1.09 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
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Setup term for programs to be able to use it
env:
TERM: alacritty
window:
dynamic_padding: true
startup_mode: Maximized
padding:
x: 0
y: 0
font:
size: 10.0
offset:
x: 0
y: 2
glyph_offset:
x: 1
y: 1
selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
save_to_clipboard: true
live_config_reload: true
key_bindings:
- { key: LBracket, mods: Command, chars: "\x5c\x70" }
- { key: RBracket, mods: Command, chars: "\x5c\x6e" }
- { key: Key6, mods: Control, chars: "\x1e" }
# Colors (Gruvbox dark)
colors:
primary:
background: '#282828'
foreground: '#ebdbb2'
# Normal colors
normal:
black: '#282828'
red: '#cc241d'
green: '#98971a'
yellow: '#d79921'
blue: '#458588'
magenta: '#b16286'
cyan: '#689d6a'
white: '#a89984'
# Bright colors
bright:
black: '#928374'
red: '#fb4934'
green: '#b8bb26'
yellow: '#fabd2f'
blue: '#83a598'
magenta: '#d3869b'
cyan: '#8ec07c'
white: '#ebdbb2'