mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
Merge pull request #5517 from mcornella/fix-suvash-theme
Display suvash prompt w/o Ruby; refactor code
This commit is contained in:
commit
31a84e710f
1 changed files with 21 additions and 17 deletions
|
@ -5,26 +5,30 @@ function prompt_char {
|
||||||
}
|
}
|
||||||
|
|
||||||
function virtualenv_info {
|
function virtualenv_info {
|
||||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
|
[[ -n "$VIRTUAL_ENV" ]] && echo '('${VIRTUAL_ENV:t}') '
|
||||||
}
|
}
|
||||||
|
|
||||||
function collapse_pwd {
|
function ruby_prompt {
|
||||||
echo $(pwd | sed -e "s,^$HOME,~,")
|
if (( $+commands[rvm-prompt] )); then
|
||||||
}
|
print -n $ZSH_THEME_RUBY_PROMPT_PREFIX
|
||||||
|
print -n $(~/.rvm/bin/rvm-prompt)
|
||||||
if which rvm-prompt &> /dev/null; then
|
print -n $ZSH_THEME_RUBY_PROMPT_SUFFIX
|
||||||
PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(~/.rvm/bin/rvm-prompt)%{$reset_color%}
|
elif (( $+commands[rbenv] )); then
|
||||||
$(virtualenv_info)$(prompt_char) '
|
print -n $ZSH_THEME_RUBY_PROMPT_PREFIX
|
||||||
else
|
print -n $(rbenv version | sed -e "s/ (set.*$//")
|
||||||
if which rbenv &> /dev/null; then
|
print -n $ZSH_THEME_RUBY_PROMPT_SUFFIX
|
||||||
PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) using %{$reset_color%}%{$fg[red]%}$(rbenv version | sed -e "s/ (set.*$//")%{$reset_color%}
|
|
||||||
$(virtualenv_info)$(prompt_char) '
|
|
||||||
fi
|
fi
|
||||||
fi
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
PROMPT='%F{magenta}%n%f at %F{yellow}%m%f in %B%F{green}%~%f%b$(git_prompt_info)$(ruby_prompt)
|
||||||
|
$(virtualenv_info) $(prompt_char) '
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
|
ZSH_THEME_GIT_PROMPT_PREFIX=' on %F{magenta}'
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
ZSH_THEME_GIT_PROMPT_SUFFIX='%f'
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
|
ZSH_THEME_GIT_PROMPT_DIRTY='%F{green}!'
|
||||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
|
ZSH_THEME_GIT_PROMPT_UNTRACKED='%F{green}?'
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
ZSH_THEME_GIT_PROMPT_CLEAN=''
|
||||||
|
|
||||||
|
ZSH_THEME_RUBY_PROMPT_PREFIX=' using %F{red}'
|
||||||
|
ZSH_THEME_RUBY_PROMPT_SUFFIX='%f'
|
||||||
|
|
Loading…
Reference in a new issue