diff --git a/modules/home/zsh/default.nix b/modules/home/zsh/default.nix index fafbd13..f02cd89 100644 --- a/modules/home/zsh/default.nix +++ b/modules/home/zsh/default.nix @@ -51,6 +51,10 @@ in # Tab to accept current selection bind-key -M menuselect '^I' accept-and-infer-next-history + # Control arrow keys + bindkey '^[[1;5C' forward-word + bindkey '^[[1;5D' backward-word + # Load fzf keybindings if [ -n "''${commands[fzf-share]}" ]; then source "$(fzf-share)/key-bindings.zsh";