Alacritty: Use control+shift+{-,+,=} for font resizing

This commit is contained in:
Adam Goldsmith 2020-11-25 23:11:21 -05:00
parent 2fb0e9f90c
commit 7f75319f22
1 changed files with 3 additions and 3 deletions

View File

@ -45,9 +45,9 @@ key_bindings:
- { key: C, mods: Control|Shift, action: Copy }
# font sizing
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: Key0, mods: Control|Shift, action: ResetFontSize }
- { key: Equals, mods: Control|Shift, action: IncreaseFontSize }
- { key: Minus, mods: Control|Shift, action: DecreaseFontSize }
# new instance in cwd
- { key: Return, mods: Super, action: SpawnNewInstance }