5 lines
125 B
Bash
5 lines
125 B
Bash
if [ -r ~/.asdf/asdf.sh ]; then
|
|
. ~/.asdf/asdf.sh
|
|
# append completions to fpath
|
|
fpath=(${ASDF_DIR}/completions $fpath)
|
|
fi
|