1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00
ohmyzsh/plugins/autojump/autojump.plugin.zsh

10 lines
367 B
Bash
Raw Normal View History

2012-01-03 17:03:53 +00:00
if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
. /usr/share/autojump/autojump.zsh
elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
. /etc/profile.d/autojump.zsh
elif (`command -v brew >/dev/null`); then # mac os x with brew
if [ -f `brew --prefix`/etc/autojump ]; then
. `brew --prefix`/etc/autojump
fi
2011-05-19 14:20:30 +00:00
fi