Files
dotfiles/.config/zsh/zoxide.zsh
2025-06-30 09:36:41 -04:00

9 lines
222 B
Bash

# alias cd=z
cd() {
if whence -w z >/dev/null 2>&1; then # Does a command called 'z' exist right now?
z "$@" # use it
else
builtin cd "$@" # quiet fallback
fi
}