autojump.plugin.zsh 1.5 KB

12345678910111213141516171819202122232425
  1. if [ $commands[autojump] ]; then # check if autojump is installed
  2. if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation
  3. source $HOME/.autojump/etc/profile.d/autojump.zsh
  4. elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation
  5. source $HOME/.autojump/share/autojump/autojump.zsh
  6. elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.sh ]; then # nix installation
  7. source $HOME/.nix-profile/etc/profile.d/autojump.sh
  8. elif [ -f /run/current-system/sw/share/autojump/autojump.zsh ]; then # nixos installation
  9. source /run/current-system/sw/share/autojump/autojump.zsh
  10. elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package
  11. source /usr/share/autojump/autojump.zsh
  12. elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation
  13. source /etc/profile.d/autojump.zsh
  14. elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation
  15. source /etc/profile.d/autojump.sh
  16. elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation
  17. source /usr/local/share/autojump/autojump.zsh
  18. elif [ -f /opt/local/etc/profile.d/autojump.sh ]; then # mac os x with ports
  19. source /opt/local/etc/profile.d/autojump.sh
  20. elif [ $commands[brew] -a -f $(brew --prefix)/etc/profile.d/autojump.sh ]; then # mac os x with brew
  21. source $(brew --prefix)/etc/profile.d/autojump.sh
  22. fi
  23. else
  24. echo 'Please install autojump to enable the plugin (https://github.com/wting/autojump)'
  25. fi