tb-dotfiles/chezmoi/dot_zshrc.d/executable_autojump.zsh

8 lines
307 B
Bash
Raw Normal View History

2024-10-29 09:04:48 -04:00
if [ -r /usr/share/autojump/autojump.zsh ]; then
source /usr/share/autojump/autojump.zsh
elif [ -r /usr/share/autojump/autojump.sh ]; then
2022-04-22 10:06:53 -04:00
source /usr/share/autojump/autojump.sh
2024-10-29 09:04:48 -04:00
elif [ -r "${HOMEBREW_PREFIX}/share/autojump/autojump.zsh" ]; then
2022-08-22 21:44:56 -04:00
source "${HOMEBREW_PREFIX}/share/autojump/autojump.zsh"
fi