itchy.zsh-theme 602 B

123456789101112131415161718
  1. local smiley="%(?,%{$fg[green]%}☺%{$reset_color%},%{$fg[red]%}☹%{$reset_color%})"
  2. local user="%{$fg[cyan]%}%n%{$reset_color%}"
  3. local host="%{$fg[cyan]%}@%m%{$reset_color%}"
  4. local pwd="%{$fg[yellow]%}%~%{$reset_color%}"
  5. PROMPT='${user}${host} ${pwd}
  6. ${smiley} '
  7. RPROMPT='$(ruby_prompt_info) %{$fg[white]%}$(git_prompt_info)%{$reset_color%}'
  8. ZSH_THEME_GIT_PROMPT_PREFIX=""
  9. ZSH_THEME_GIT_PROMPT_SUFFIX=""
  10. ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ✗%{$reset_color%}"
  11. ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%} ✔%{$reset_color%}"
  12. ZSH_THEME_RUBY_PROMPT_PREFIX=""
  13. ZSH_THEME_RUBY_PROMPT_SUFFIX=""