Created
October 6, 2016 07:47
-
-
Save israelcrux/036925fc08034e60605537d9d2c95286 to your computer and use it in GitHub Desktop.
My personal ohmyzsh teme (stolen from "amuse")
This file contains hidden or 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
# vim:ft=zsh ts=2 sw=2 sts=2 | |
rvm_current() { | |
rvm current 2>/dev/null | |
} | |
rbenv_version() { | |
rbenv version 2>/dev/null | awk '{print $1}' | |
} | |
PROMPT=' | |
%{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) %{$reset_color%} | |
$ ' | |
# Must use Powerline font, for \uE0A0 to render. | |
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}\uE0A0 " | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} *" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
if [ -e ~/.rvm/bin/rvm-prompt ]; then | |
RPROMPT='%{$fg_bold[red]%}‹$(rvm_current)›%{$reset_color%}' | |
else | |
if which rbenv &> /dev/null; then | |
RPROMPT='%{$fg_bold[red]%}$(rbenv_version)%{$reset_color%}' | |
fi | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment