# Paths
# export JAVA_HOME=$(/usr/libexec/java_home) # Enable if using JDK, otherwise disable for performance
+export XDG_CONFIG_HOME=$HOME/.config
export GOPATH=$HOME/Projects/go
export ANDROID_HOME=$HOME/Library/Android/sdk
export ANDROID_NDK_HOME=$HOME/Library/Android/sdk/ndk-bundle
if [[ -s "/opt/homebrew/bin/brew" ]]; then
. /opt/homebrew/etc/profile.d/z.sh
else
- if [[ -s "/usr/share/z/z.sh" ]]; then
- . /usr/share/z/z.sh
+ if [[ -s "/usr/libexec/z.sh" ]]; then
+ . /usr/libexec/z.sh
else
- . /usr/local/etc/profile.d/z.sh
+ if [[ -s "/usr/share/z/z.sh" ]]; then
+ . /usr/share/z/z.sh
+ else
+ . /usr/local/etc/profile.d/z.sh
+ fi
fi
fi