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

View file

@ -2,6 +2,14 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:${PATH
export LANG='en_US.UTF-8'
export PAGER='less -RF'
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
for editor in nvim vim nano; do
if command -v "$editor" &> /dev/null; then
export EDITOR="$editor"

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)