alacritty/alacritty.toml 1.1 K raw
1
[general]
2
live_config_reload = true
3
4
[env]
5
TERM = "xterm-256color"
6
7
[window]
8
decorations = "None"
9
dimensions = { columns = 85, lines = 30 }
10
padding = { x = 10, y = 4 }
11
dynamic_padding = false
12
opacity = 0.9
13
14
[font]
15
size = 11
16
17
[font.normal]
18
family = "BerkeleyMono Nerd Font"
19
style = "Regular"
20
21
[font.bold]
22
family = "BerkeleyMono Nerd Font"
23
style = "Bold"
24
25
[font.italic]
26
family = "BerkeleyMono Nerd Font"
27
style = "Italic"
28
29
[font.bold_italic]
30
family = "BerkeleyMono Nerd Font"
31
style = "Bold Italic"
32
33
[mouse]
34
hide_when_typing = true
35
36
[cursor]
37
style = { shape = "Block", blinking = "Off" }
38
39
# Darkmatter
40
[colors.primary]
41
background = "#121113"
42
foreground = "#ffffff"
43
44
[colors.cursor]
45
text = "#121113"
46
cursor = "#ffffff"
47
48
[colors.selection]
49
text = "#000000"
50
background = "#222222"
51
52
[colors.normal]
53
black = "#121113"
54
red = "#5f8787"
55
green = "#fbcb97"
56
yellow = "#e78a53"
57
blue = "#888888"
58
magenta = "#999999"
59
cyan = "#aaaaaa"
60
white = "#c1c1c1"
61
62
[colors.bright]
63
black = "#333333"
64
red = "#5f8787"
65
green = "#fbcb97"
66
yellow = "#e78a53"
67
blue = "#888888"
68
magenta = "#999999"
69
cyan = "#aaaaaa"
70
white = "#c1c1c1"