A Mind United

Development notes, docs, and scribbles.

Installing zsh

zsh is now the default shell in os X Catalina). You will only need to install it if you have an older OS version, or have upgraded.

Install

Migrating from Bash

If you are coming changing over from bash, you should make sure that your paths from bash are available in zsh.

in your zshrc (~/zshrc):


# PATH
export PATH=$HOME/bin:/usr/local/bin:$PATH

# JAVA
export JAVA_HOME=$(/usr/libexec/java_home)

# Python
export PATH=~/Library/Python/3.6/bin:$PATH

# RVM (Ruby version Manager)
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"