- Open your .zshrc file:
- Add the following to your .zshrc:
if [ -f ~/.zprofile ]; then
source ~/.zprofile
fi
- Download the profile:
curl -v -H "Cache-Control: no-cache" https://raw.githubusercontent.com/matt-andersen/dotfiles/refs/heads/main/zprofile -o ~/.zprofile &&
source ~/.zshrc &&
cat ~/.zprofile
- Open your .bashrc file:
- Add the following to your .bashrc:
if [ -f ~/.bash_profile ]; then
source ~/.bash_profile
fi
- Download the profile:
curl -v -H "Cache-Control: no-cache" https://raw.githubusercontent.com/matt-andersen/dotfiles/refs/heads/main/bash_profile -o ~/.bash_profile &&
source ~/.bashrc &&
cat ~/.bash_profile