summaryrefslogtreecommitdiff
path: root/plugins/asdf/asdf.plugin.zsh
blob: d563cf5f8e84746d7dff03da165680c06c840d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Find where asdf should be installed.
ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}"

# Load asdf, if found.
if [ -f $ASDF_DIR/asdf.sh ]; then
    . $ASDF_DIR/asdf.sh
fi

# Load asdf completions, if found.
if [ -f $ASDF_DIR/completions/asdf.bash ]; then
    . $ASDF_DIR/completions/asdf.bash
fi