-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalacritty.toml
57 lines (44 loc) · 1.61 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
# alacritty.toml
# vim: ft=toml
# __| \ _ \ | _ \ __| __ __| __ __|
# ( _ \ / | ( | (_ | | |
# \___| _/ _\ _|_\ ____| \___/ \___| _| _|
# https://alacritty.org/config-alacritty.html
general.import = [
# Uncomment the flavour you want below:
# "~/.config/alacritty/themes/catppuccin/catppuccin-latte.toml"
# "~/.config/alacritty/themes/catppuccin/catppuccin-frappe.toml"
# "~/.config/alacritty/themes/catppuccin/catppuccin-macchiato.toml"
"~/.config/alacritty/themes/catppuccin/catppuccin-mocha.toml"
]
general.live_config_reload = true
[terminal.shell]
program = "/bin/zsh"
args = []
[window]
dynamic_title = true
dimensions = { columns = 215, lines = 53 }
position = { x = 100, y = 100 }
padding = { x = 10, y = 10 }
dynamic_padding = true
decorations = "Buttonless"
opacity = 0.92
blur = true
resize_increments = true
[bell]
command = { program = "osascript", args = ["-e", "beep"] }
[cursor]
style = { shape = "Block", blinking = "Off" }
[font]
normal = { family = "MonoLisa Nerd Font Mono", style = "Regular" }
size = 18
[hints]
enabled = [
{ command = "open", hyperlinks = true, post_processing = true, persist = false, mouse.enabled = true, binding = { key = "U", mods = "Control|Shift" }, regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+" },
]
[keyboard]
bindings = [
{ key = "Tab", mods = "Control", chars = "\u001B[27;5;9~" },
{ key = "Tab", mods = "Control|Shift", chars = "\u001B[27;6;9~" },
{ key = "1", mods = "Command", chars = "∞" },
]