-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.yml
70 lines (65 loc) · 1.48 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
window:
opacity: 0.95
padding:
x: 10
y: 10
dynamic_padding: false
decorations: none
startup_mode: Maximized
dynamic_title: true
scrolling:
history: 10000
multiplier: 3
font:
normal:
family: Fira Code
style: Regular
bold:
family: Fira Code
style: Bold
italic:
family: Fira Code
style: Italic
bold_italic:
family: Fira Code
style: Bold Italic
size: 16.0
colors:
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'
draw_bold_text_with_bright_colors: true
cursor:
unfocused_hollow: true
shell:
program: /usr/local/bin/zsh
args:
- -l
- -c
- "tmux attach || tmux"
mouse:
hide_when_typing: false
key_bindings:
- { key: Left, mods: Alt, chars: "\x1bb" } # one word left
- { key: Right, mods: Alt, chars: "\x1bf" } # one word right
- { key: Paste, action: Paste }
- { key: Copy, action: Copy }
- { key: L, mods: Control, action: ClearLogNotice }