-
Notifications
You must be signed in to change notification settings - Fork 39
/
alacritty.toml
executable file
·64 lines (50 loc) · 1.38 KB
/
alacritty.toml
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
# Adaptation of colors from WezTerm to Alacritty in TOML format
[[colors.indexed_colors]]
color = "#ffa066" # Additional color
index = 16
[[colors.indexed_colors]]
color = "#ff5d62" # Additional color
index = 17
[colors.bright]
black = "#727169" # Bright ANSI Black
blue = "#7fb4ca" # Bright ANSI Blue
cyan = "#7aa89f" # Bright ANSI Cyan
green = "#98bb6c" # Bright ANSI Green
magenta = "#938aa9" # Bright ANSI Magenta
red = "#e82424" # Bright ANSI Red
white = "#dcd7ba" # Bright ANSI White
yellow = "#e6c384" # Bright ANSI Yellow
[colors.cursor]
cursor = "#c8c093" # Cursor color
text = "#c8c093" # Cursor text color
[colors.normal]
black = "#090618" # ANSI Black
blue = "#7e9cd8" # ANSI Blue
cyan = "#6a9589" # ANSI Cyan
green = "#76946a" # ANSI Green
magenta = "#957fb8" # ANSI Magenta
red = "#c34043" # ANSI Red
white = "#c8c093" # ANSI White
yellow = "#c0a36e" # ANSI Yellow
[colors.primary]
background = "#181616" # Background color
foreground = "#dcd7ba" # Foreground color
[colors.selection]
background = "#2d4f67" # Selection background color
text = "#c8c093" # Selection text color
[cursor]
style = "Block"
unfocused_hollow = true
[font]
size = 16
[font.normal]
family = "IosevkaTerm NFM"
[window]
option_as_alt = "Both"
opacity = 0.96
[env]
TERM = "xterm-256color"
# Uncomment for Windows
#[shell]
#program = "wsl.exe"
#args = ["--cd","~"]