Modified versions of oh-my-zsh themes.
After installing oh-my-zsh, you can install the modified themes by:
$ curl -fsSL https://raw.github.com/jorcalle11/custom-zsh-themes/master/robbyrussell-modified.zsh-theme >> ~/.oh-my-zsh/themes/robbyrussell-modified.zsh-theme
And configure .zshrc
:
ZSH_THEME="robbyrussell-modified"
If you are using the robbyrussell-modified
theme and also you have installed Node.js using nvm, problaby you'll get this error:
robbyrussell-modified.zsh-theme:4: command not found: node
Make sure to move these lines to the top of the .zshrc
file:
export NVM_DIR="${XDG_CONFIG_HOME/:-$HOME/.}nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm