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
|
[general]
live_config_reload = true
[window]
padding = { x = 3, y = 3 }
dynamic_title = true
[scrolling]
history = 5000
multiplier = 3
[selection]
save_to_clipboard = false
[cursor]
unfocused_hollow = true
[mouse]
hide_when_typing = true
[keyboard]
bindings = [
{ key = "C", mods = "Alt", mode = "~Vi", action = "Copy" },
{ key = "V", mods = "Alt", mode = "~Vi", action = "Paste" },
{ key = "J", mods = "Alt|Shift", mode = "~Vi", action = "DecreaseFontSize" },
{ key = "K", mods = "Alt|Shift", mode = "~Vi", action = "IncreaseFontSize" },
{ key = "J", mods = "Alt", mode = "~Vi", action = "ScrollLineDown" },
{ key = "K", mods = "Alt", mode = "~Vi", action = "ScrollLineUp" },
{ key = "F11", action = "ToggleFullscreen" },
{ key = "F5", command = { program = "alacritty", args = [
"msg",
"config",
"font.size=25",
] } },
{ key = "F5", mods = "Shift", command = { program = "alacritty", args = [
"msg",
"config",
"--reset",
] } },
{ key = "N", mods = "Control|Shift", mode = "~Vi", action = "CreateNewWindow" },
]
|