diff options
-rw-r--r-- | alacritty.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty.yml b/alacritty.yml index 8cce9775..b4ae3fda 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -163,8 +163,8 @@ visual_bell: # (e.g. "\x1b[5~") is? Open another terminal (like xterm) without tmux, # then run `showkey -a` to get the sequence associated to a key combination. key_bindings: - - { key: V, mods: Command, action: Paste } - - { key: C, mods: Command, action: Copy } + - { key: V, mods: Control|Shift, action: Paste } + - { key: C, mods: Control|Shift, action: Copy } - { key: Q, mods: Command, action: Quit } - { key: W, mods: Command, action: Quit } - { key: Home, chars: "\x1bOH", mode: AppCursor } |