Files
2025-09-22 08:27:51 +02:00

30 lines
533 B
TOML

[terminal.shell]
args = ["--login"]
program = "/bin/zsh"
[window]
opacity = 1
[font]
normal = { family = "JetBrains Mono", style = "Regular" }
size = 13
[terminal]
[[keyboard.bindings]]
key = "C"
mods = "Control|Alt"
command = { program = "sh", args = ["-c", "alacritty msg scrollback | xclip -selection clipboard -i"] }
# Enter vi mode with Ctrl+Space
[[keyboard.bindings]]
key = "Space"
mods = "Control"
action = "ToggleViMode"
# Exit vi mode with Esc
[[keyboard.bindings]]
key = "Escape"
mode = "Vi"
action = "ToggleViMode"