-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.alacritty.yml
85 lines (72 loc) · 1.43 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
env:
TERM: alacritty
shell:
program: /bin/zsh
args:
- -l
- -c
- "tmux a -t 0 || tmux"
###########################
# Window
###########################
window:
startup_mode: 'Maximized'
###########################
# Colors
###########################
colors:
# primary:
# background: '#191919'
# foreground: '#d8dee9'
# dim_foreground: '#a5abb6'
cursor:
text: '#2e3440'
cursor: '#d8dee9'
vi_mode_cursor:
text: '#2e3440'
cursor: '#d8dee9'
selection:
text: CellForeground
background: '#4c566a'
search:
matches:
foreground: CellBackground
background: '#88c0d0'
footer_bar:
background: '#434c5e'
foreground: '#d8dee9'
normal:
black: '#2E3436'
red: '#CC0000'
green: '#4E9A06'
yellow: '#C4A000'
blue: '#3465A4'
magenta: '#75507B'
cyan: '#06989A'
white: '#D3D7CF'
bright:
black: '#555753'
red: '#EF2929'
green: '#8AE234'
yellow: '#FCE94F'
blue: '#729FCF'
magenta: '#AD7FA8'
cyan: '#34E2E2'
white: '#EEEEEC'
###########################
# Font
###########################
font:
size: 14.0
normal:
family: 'SauceCodePro Nerd Font'
style: Regular
bold:
family: 'SauceCodePro Nerd Font'
style: Bold
###########################
# Mouse
###########################
mouse_bindings:
- { mouse: Left, mods: Shift, action: Copy }
- { mouse: Right, mods: Shift, action: Paste }