You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
748 B
29 lines
748 B
# 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]%}%~%{$reset_color%}$(git_prompt_info) ⌚ %{$fg_bold[red]%}%*%{$reset_color%} |
|
$ ' |
|
|
|
# Must use Powerline font, for \uE0A0 to render. |
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}\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 |
|
|
|
|