From 1cbb2fa28f638c87655bfbffdef299cec761ae5e Mon Sep 17 00:00:00 2001 From: Luna Komorebi Date: Fri, 19 Apr 2024 16:19:45 +0200 Subject: [PATCH] bind ctrl+arrows --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 1781f21..6153120 100644 --- a/.zshrc +++ b/.zshrc @@ -74,6 +74,9 @@ if [ -d "$HOME/.zsh-custom" ]; then done fi +bindkey "^[[1;5C" forward-word +bindkey "^[[1;5D" backward-word + DISABLE_MAGIC_FUNCTIONS=true source $OTHER/func.zsh source "$plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"