From c30511eb0c4dbce31093668440f16dcbbbe6758d Mon Sep 17 00:00:00 2001 From: Tyler Kelley Date: Fri, 21 Feb 2025 00:26:46 -0600 Subject: [PATCH] Change zsh keybindings to alt+hjkl to fix problems with ctrl+l clear shortcut --- modules/home/zsh.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index a0219dd..f43606f 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -5,10 +5,10 @@ syntaxHighlighting.enable = true; initExtra = '' - bindkey "^H" backward-word - bindkey "^J" down-line-or-history - bindkey "^K" up-line-or-history - bindkey "^L" forward-word + bindkey "\eh" backward-word + bindkey "\ej" down-line-or-history + bindkey "\ek" up-line-or-history + bindkey "\el" forward-word ''; shellAliases = {