nebirhos.zsh-theme 988 B

123456789101112131415161718192021
  1. # Based on robbyrussell's theme, with host and rvm indicators. Example:
  2. # @host ➜ currentdir rvm:(rubyversion@gemset) git:(branchname)
  3. # Get the current ruby version in use with RVM:
  4. if [ -e ~/.rvm/bin/rvm-prompt ]; then
  5. RUBY_PROMPT_="%{$fg_bold[blue]%}rvm:(%{$fg[green]%}\$(~/.rvm/bin/rvm-prompt s i v g)%{$fg_bold[blue]%})%{$reset_color%} "
  6. else
  7. if which rbenv &> /dev/null; then
  8. RUBY_PROMPT_="%{$fg_bold[blue]%}rbenv:(%{$fg[green]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$fg_bold[blue]%})%{$reset_color%} "
  9. fi
  10. fi
  11. # Get the host name (first 4 chars)
  12. HOST_PROMPT_="%{$fg_bold[red]%}@%m ➜ %{$fg_bold[cyan]%}%c "
  13. GIT_PROMPT="%{$fg_bold[blue]%}\$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}"
  14. PROMPT="$HOST_PROMPT_$RUBY_PROMPT_$GIT_PROMPT"
  15. ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
  16. ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
  17. ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
  18. ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"