From f60800c79264d001701ef2988ce9a589f32fc979 Mon Sep 17 00:00:00 2001 From: Andrey Date: Sun, 1 Feb 2026 17:18:28 +0100 Subject: [PATCH] up arrow on macos? --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 185f2c0..e5cd4cb 100644 --- a/.zshrc +++ b/.zshrc @@ -83,6 +83,8 @@ bindkey '^[e' edit-command-line # Alt+E → edit in $EDITOR zinit light zsh-users/zsh-history-substring-search [[ -n ${key[Up]} ]] && bindkey ${key[Up]} history-substring-search-up [[ -n ${key[Down]} ]] && bindkey ${key[Down]} history-substring-search-down +bindkey '^[[A' history-substring-search-up +bindkey '^[[B' history-substring-search-down ZLE_RPROMPT_INDENT=0 # starship prompt @@ -108,6 +110,7 @@ path=( $HOME/.cargo/bin /usr/local/go/bin $HOME/go/bin + /opt/homebrew/bin $path )