0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/autojump/autojump.plugin.zsh

10 lines
420 B
Bash
Raw Normal View History

2012-01-10 10:01:16 +01:00
if [ $commands[autojump] ]; then # check if autojump is installed
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 [ $commands[brew] -a -f `brew --prefix`/etc/autojump ]; then # mac os x with brew
2012-01-03 18:03:53 +01:00
. `brew --prefix`/etc/autojump
fi
2011-05-19 16:20:30 +02:00
fi