-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathalacritty.toml
More file actions
54 lines (44 loc) · 1.16 KB
/
Copy pathalacritty.toml
File metadata and controls
54 lines (44 loc) · 1.16 KB
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
general.import = ["~/.config/alacritty/themes/themes/one_dark.toml"]
[env]
TERM = "xterm-256color"
[window]
padding.x = 10
padding.y = 10
decorations = "Buttonless"
option_as_alt = "Both"
[font]
size = 14
normal.family = "FiraCode Nerd Font"
normal.style = "Regular"
bold.family = "FiraCode Nerd Font"
bold.style = "Bold"
italic.family = "FiraCode Nerd Font"
italic.style = "Italic"
[keyboard]
bindings = [
# opt + right and left jump between words
{ key = "Right", mods = "Alt", chars = "\u001BF" },
{ key = "Left", mods = "Alt", chars = "\u001BB" },
{ key = "Slash", mods = "Control", chars = "\u001f" },
]
[selection]
save_to_clipboard = true
[cursor]
style = "Beam"
unfocused_hollow = false
thickness = 0.2
[mouse]
hide_when_typing = true
[scrolling]
history = 10000
[hints]
[[hints.enabled]]
# default
regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`\\\\]+"
command = "open"
mouse = { enabled = true, mods = "Shift" }
[[hints.enabled]]
# detect file paths
regex = "([^\\s:]+(?:/[^\\s:]+)+(?:\\:\\d+)?)"
command = "open"
mouse = { enabled = true, mods = "Shift" }