You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
265 B

  1. # Source autojump on BASH or ZSH depending on the shell
  2. if [ "$BASH_VERSION" ] && [ -n "$PS1" ] && echo $SHELLOPTS | grep -v posix >>/dev/null; then
  3. . /etc/profile.d/autojump.bash
  4. elif [ "$ZSH_VERSION" ] && [ -n "$PS1" ]; then
  5. . /etc/profile.d/autojump.zsh
  6. fi