aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/alacritty/.config/alacritty/defaults.toml
blob: 3fd1d994d11c0de65da3505e1592c14fe5208a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[shell]
program = "tmux"
args = ["new", "-A"]

[window]
dynamic_padding = true
opacity = 0.95

[font]
size = 15
normal = { family = "monospace" }

[mouse]
hide_when_typing = true

[keyboard]
bindings = [
    { action = "CreateNewWindow", key = "T", mods = "Control|Shift" },
    { action = "ReceiveChar", key = "F", mode = "~Search", mods = "Control|Shift" },
    { action = "ToggleFullscreen", key = "Return", mods = "Alt" },
]