30 lines
533 B
TOML
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"
|