Is there anything in Zsh like .bash_profile?
Yes, it’s called ~/.zshenv. Here’s how I have $JAVA_HOME set in ~/.zshenv: export JAVA_HOME=”$(/usr/libexec/java_home)” Keep in mind, however, that zsh is not bash, so just ’cause you have to source your .bash_profile every time you open a terminal does not mean that you have to do that with zsh. With zsh, I only have to … Read more