Files
dotFiles/home/.config/alacritty/alacritty.yml
T
harish2704 8602e2c893 <Alt+1-9> for switching tabs
Remap terminal opening to <Leader>ts, tv & tf
change telescope.defaults.path_display = { "shorten" };
Add tab-switching and moving key map using Ctr+J/K similar to Ctrl+PageUp/Down
2023-10-10 18:46:05 +05:30

17 lines
686 B
YAML

font:
size: 14.0
normal:
# family: Source Code Pro Medium
family: CodeNewRoman Nerd Font Mono
key_bindings:
- { key: Return, mods: Shift, chars: "\e[13;2u" }
- { key: Return, mods: Control, chars: "\e[13;5u" }
- { key: Return, mods: Control|Shift, chars: "\e[13;6u" }
- { key: Tab, mods: Shift, chars: "\e[Z" }
- { key: Tab, mods: Control, chars: "\e[27;5;9~" }
- { key: Tab, mods: Control|Shift, chars: "\e[27;6;9~" }
- { key: J, mods: Control|Shift, chars: "\x1b[74;5u" }
- { key: K, mods: Control|Shift, chars: "\x1b[75;5u" }