-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathalacritty.toml
82 lines (66 loc) · 1.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Specification: https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
[env]
TERM = "xterm-256color"
TERM_PROGRAM = "alacritty"
[window.dimensions]
lines = 25
columns = 100
[window]
opacity = 0.8
blur = true
option_as_alt = "Both"
[font]
size = 15
[font.normal]
family = "MesloLGL Nerd Font"
style = "Regular"
[font.bold]
family = "MesloLGL Nerd Font"
style = "Bold"
[font.italic]
family = "MesloLGL Nerd Font"
style = "Italic"
# Theme: Salty Nozo
[colors.primary]
background = "#001209"
foreground = "#E5C49E"
[colors.normal]
black = "#1D485F"
blue = "#5FB1C2"
cyan = "#A6DFEB"
green = "#84C47E"
magenta = "#9E56B4"
red = "#E76D54"
white = "#C6E8F1"
yellow = "#E1D471"
[colors.bright]
black = "#008EAB"
blue = "#77DBF4"
cyan = "#0BC7E3"
green = "#69F197"
magenta = "#B682D8"
red = "#FF8274"
white = "#FFFFFF"
yellow = "#FEDAAE"
[colors.cursor]
text = "#0c131F"
cursor = "#FF8317"
[colors.selection]
text = "#BF9729"
background = "#265B75"
[[hints.enabled]]
regex = "(ipfs:|ipns:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
command = "open"
post_processing = true
[hints.enabled.mouse]
enabled = true
mods = "Command"
[[hints.enabled]]
regex = '([a-zA-Z/\-\\._]+)'
post_processing = true
[hints.enabled.command]
program = "/usr/local/bin/code"
args = ["--goto"]
[hints.enabled.mouse]
enabled = true
mods = "Command"