-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.alacritty.yml
76 lines (66 loc) · 1.1 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
shell:
program: /usr/bin/tmux
args:
- new
- -A
- -s main
env:
TERM: alacritty
window:
dimensions:
columns: 150
lines: 40
opacity: 0.98
padding:
x: 8
y: 4
scrolling:
history: 99999
draw_bold_text_with_bright_colors: true
font:
normal:
family: JetBrains Mono
style: Regular
bold:
family: JetBrains Mono
style: Medium
italic:
family: JetBrains Mono
style: Italic
size: 16.0
offset:
x: 3
y: 2
glyph_offset:
x: 0
y: 0
selection:
save_to_clipboard: true
cursor:
style: Beam
# Colors (Tomorrow Night Bright)
colors:
# Default colors
primary:
background: '#000000'
foreground: '#eaeaea'
# Normal colors
normal:
black: '#000000'
red: '#d54e53'
green: '#b9ca4a'
yellow: '#e6c547'
blue: '#7aa6da'
magenta: '#c397d8'
cyan: '#70c0ba'
white: '#424242'
# Bright colors
bright:
black: '#666666'
red: '#ff3334'
green: '#9ec400'
yellow: '#e7c547'
blue: '#7aa6da'
magenta: '#b77ee0'
cyan: '#54ced6'
white: '#2a2a2a'