Add asdf to .zshenv to fix GOPATH issues on a purely asdf Go runtime install

This commit is contained in:
Tony Blyler 2024-05-06 14:26:36 -04:00
parent 7245cefc24
commit b24063125b
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions
chezmoi/dot_zshrc.d

View file

@ -1,11 +1,3 @@
if [ -r ~/.asdf/asdf.sh ]; then
ASDF_FORCE_PREPEND=1 . ~/.asdf/asdf.sh
fi
if command -v brew &> /dev/null && [ -r "$(brew --prefix)/opt/asdf/libexec/asdf.sh" ]; then
. "$(brew --prefix)/opt/asdf/libexec/asdf.sh"
fi
if [ -n "$ASDF_DIR" ]; then
# append completions to fpath
fpath=(${ASDF_DIR}/completions $fpath)