Powerline looking zsh theme with rvm prompt, git status and branch, current time, user, hostname, pwd, exit status, root and background job status.
Influenced heavily by agnoster's theme and jeremyFreeAgent's theme
Install your favorite version of Powerline-patched fonts
git clone https://github.com/consolemaverick/zsh2000.git
ln -s zsh2000.zsh-theme ~/.oh-my-zsh/themes/zsh2000.zsh-theme
Modify ~/.zshrc setting
ZSH_THEME="zsh2000"
Place these above this line in your ~/.zshrc:
ZSH_THEME="zsh2000"
Disable the right hand side prompt entirely
export ZSH_2000_DISABLE_RIGHT_PROMPT='true'
Disable user@hostname
export ZSH_2000_DEFAULT_USER='YOUR_USER_NAME'
Disable display of
- exit status of your last command
- whether or not you are root
- whether or not there are background jobs running
by adding
export ZSH_2000_DISABLE_STATUS='true'
Disable git status on top of plain git clean/dirty
export ZSH_2000_DISABLE_GIT_STATUS='true'
Disable RVM prompt
export ZSH_2000_DISABLE_RVM='true'