From dc23cda78a3c242fe648147999bd4b42cd7ad93e Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 16 Aug 2024 12:53:34 +0200 Subject: [PATCH] fix: zsh ctrl-arrow --- home/dotfiles/.zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/dotfiles/.zshrc b/home/dotfiles/.zshrc index 33ffe20..9097029 100644 --- a/home/dotfiles/.zshrc +++ b/home/dotfiles/.zshrc @@ -5,10 +5,14 @@ PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n% %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_ autoload -U compinit && compinit zstyle ':completion:*' menu select zmodload zsh/complist + bindkey -M menuselect 'h' vi-backward-char bindkey -M menuselect 'k' vi-up-line-or-history bindkey -M menuselect 'j' vi-down-line-or-history bindkey -M menuselect 'l' vi-forward-char +bindkey "^[[1;5C" forward-word +bindkey "^[[1;5D" backward-word + setopt extendedglob _comp_options+=(globdots) @@ -21,5 +25,6 @@ unsetopt HIST_IGNORE_ALL_DUPS setopt HIST_FCNTL_LOCK + source $ZDOTDIR/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source $ZDOTDIR/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -- 2.48.1