autojump.plugin.zsh 697 B

12345678910111213
  1. if [ $commands[autojump] ]; then # check if autojump is installed
  2. if [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
  3. . /usr/share/autojump/autojump.zsh
  4. elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
  5. . /etc/profile.d/autojump.zsh
  6. elif [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
  7. . $HOME/.autojump/etc/profile.d/autojump.zsh
  8. elif [ -f /opt/local/etc/profile.d/autojump.zsh ]; then # mac os x with ports
  9. . /opt/local/etc/profile.d/autojump.zsh
  10. elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.zsh ]; then # mac os x with brew
  11. . `brew --prefix`/etc/autojump.zsh
  12. fi
  13. fi