git clone [email protected]:phil303/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
# setup dev environment
./install.py
git submodule update --init --recursive
chsh -s /bin/zsh
python3 -m venv ~/.virtualenvs/<name>
# to activate
. ~/.virtualenvs/<name>/bin/activate
If colors don't look right with iTerm on new install, uncheck "Draw bold text in bright colors" in the Profiles tab of iTerm.
To check shell start up times:
for i in $(seq 1 10); do /usr/bin/time $SHELL -i -c exit; done
To see the order things are executed, use the zsh -xv
command.