Change zsh keybindings to alt+hjkl to fix problems with ctrl+l clear shortcut

This commit is contained in:
Tyler Kelley 2025-02-21 00:26:46 -06:00
parent 998700b59f
commit c30511eb0c

View File

@ -5,10 +5,10 @@
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
initExtra = '' initExtra = ''
bindkey "^H" backward-word bindkey "\eh" backward-word
bindkey "^J" down-line-or-history bindkey "\ej" down-line-or-history
bindkey "^K" up-line-or-history bindkey "\ek" up-line-or-history
bindkey "^L" forward-word bindkey "\el" forward-word
''; '';
shellAliases = { shellAliases = {