This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH="$HOME/.oh-my-zsh" | |
## Make sure the cache directory exists so it can be written to even when cache gets wiped. | |
if [ ! -d "$HOME/.cache/zsh" ]; then | |
mkdir -p $HOME/.cache/zsh | |
fi | |
# --- Configure Oh-My-Zsh --- | |
ZSH_THEME="robbyrussell" | |
HISTFILE=$HOME/.cache/zsh/history |