asdf.plugin.zsh 285 B

123456789101112
  1. # Find where asdf should be installed.
  2. ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}"
  3. # Load asdf, if found.
  4. if [ -f $ASDF_DIR/asdf.sh ]; then
  5. . $ASDF_DIR/asdf.sh
  6. fi
  7. # Load asdf completions, if found.
  8. if [ -f $ASDF_DIR/completions/asdf.bash ]; then
  9. . $ASDF_DIR/completions/asdf.bash
  10. fi