zsh updates for Ubuntu

This commit is contained in:
Joel Beckmeyer 2025-03-31 08:36:15 -04:00
parent a6f6c8d577
commit 7fc46e0f13

View File

@ -84,7 +84,22 @@ if command -v keychain >/dev/null; then
rbw unlock rbw unlock
SSH_ASKPASS=get_id_rsa_pass SSH_ASKPASS_REQUIRE=force ssh-add ~/.ssh/id_rsa SSH_ASKPASS=get_id_rsa_pass SSH_ASKPASS_REQUIRE=force ssh-add ~/.ssh/id_rsa
fi fi
### End user configuration
# Command not found handler
if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
function command_not_found_handler {
if [ -x /usr/lib/command-not-found ]; then
/usr/lib/command-not-found -- "$1"
return $?
elif [ -x /usr/share/command-not-found/command-not-found ]; then
/usr/share/command-not-found/command-not-found -- "$1"
return $?
else
printf "zsh: command not found: %s\n" "$1" >&2
return 127
fi
}
fi
### hooks/includes ### hooks/includes
for plugin in zsh-syntax-highlighting zsh-history-substring-search \ for plugin in zsh-syntax-highlighting zsh-history-substring-search \
@ -93,6 +108,10 @@ for plugin in zsh-syntax-highlighting zsh-history-substring-search \
source /usr/share/zsh/plugins/$plugin/${plugin}.zsh source /usr/share/zsh/plugins/$plugin/${plugin}.zsh
fi fi
done done
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source "$HOME/.local/share/zsh-history-substring-search/zsh-history-substring-search-1.1.0/zsh-history-substring-search.zsh"
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
bindkey '^[[A' history-substring-search-up bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down bindkey '^[[B' history-substring-search-down
bindkey -M vicmd 'k' history-substring-search-up bindkey -M vicmd 'k' history-substring-search-up
@ -101,3 +120,5 @@ bindkey -M vicmd 'j' history-substring-search-down
if command -v pazi &>/dev/null; then if command -v pazi &>/dev/null; then
eval "$(pazi init zsh)" # or 'bash' eval "$(pazi init zsh)" # or 'bash'
fi fi
### End user configuration