Last active
April 16, 2019 07:39
-
-
Save tandat2209/2f6f1d4c2599fff2ddee53f2239da06e to your computer and use it in GitHub Desktop.
tandat.zsh-theme
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
rvm_current() { | |
rvm current 2>/dev/null | |
} | |
rbenv_version() { | |
rbenv version 2>/dev/null | awk '{print $1}' | |
} | |
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )" | |
PROMPT='${ret_status} %{$fg[cyan]%}$(shrink_path -l -t)%{$reset_color%} $(git_prompt_info)' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[red]%}\uE0A0 " | |
ZSH_THEME_GIT_PROMPT_SUFFIX=" %{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%} ✗" | |
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