alacritty: Fix key binding for Paste

We require Ctrl-v for visual selection in neovim, so use a different key
binding for this.
This commit is contained in:
Sanchayan Maity 2020-11-17 11:53:25 +05:30
parent da93717582
commit 6907fff2e2
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ background_opacity: 0.8
# - AppKeypad
#
key_bindings:
- { key: V, mods: Control, action: Paste }
- { key: V, mods: Control|Alt, action: Paste }
- { key: V, mods: Control|Shift, action: PasteSelection }
- { key: C, mods: Control|Shift, action: Copy }
- { key: Q, mods: Control, action: Quit }