blob: e5f61e6676b93caf55ba8ec29b8c5397cd69fe64 (
plain) (
blame)
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
|
import = [
# "~/.config/alacritty/themes/themes/base16_default_dark.toml"
"~/.config/alacritty/themes/themes/solarized_light.toml",
"~/.config/alacritty/keybindings.toml"
#"~/.config/alacritty/themes/themes/gruvbox_material_hard_dark.toml"
]
[window]
decorations = "Full"
decorations_theme_variant = "Light"
[keyboard]
bindings = [
{ key = "y", mods = "Control", action = "PasteSelection" },
]
[font]
size = 10
[font.normal]
#family = "monospace"
#family = "Iosevka Nerd Font Mono"
family = "Hack"
style = "Regular"
[font.bold]
#family = "monospace"
family = "Hack"
style = "Bold"
[font.italic]
#family = "monospace"
family = "Iosevka Nerd Font Mono"
style = "Italic"
[cursor]
style.shape = "Block"
style.blinking = "Off"
[[hints.enabled]]
command = "xdg-open" # On Linux/BSD
hyperlinks = true
post_processing = true
persist = false
mouse.enabled = true
binding = { key = "I", mods = "Control|Shift" }
regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
|