ohmyzsh/themes/bira.zsh-theme
Pavel Puchkin 7fca4da802 Bira theme now see at BIRA_VENV variable.
If it equal to 'virtualenvwrapper', bira will use `basename "$VIRTUAL_ENV"`
to get virtual enviroment name. Else, it still use `rvm-prompt`.
NOTE! You need have PS1="$_OLD_VIRTUAL_PS1" in your
$WORKON_HOME/postactivate to prevent virtualenvwrapper from
breaking PROMPT
2011-10-26 20:27:56 +11:00

20 lines
767 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
if [ "$BIRA_VENV" = "virtualenvwrapper" ]; then
local venv_command='%{$fg[red]%}$(basename "$VIRTUAL_ENV")%{$reset_color%}'
else
local venv_command='%{$fg[red]%}$(rvm-prompt i v g)%{$reset_color%}'
fi
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}'
local current_dir='%{$terminfo[bold]$fg[blue]%} %~%{$reset_color%}'
local git_branch='$(git_prompt_info)%{$reset_color%}'
PROMPT="╭─${user_host} ${current_dir} ${venv_command} ${git_branch}
╰─%B$%b "
RPS1="${return_code}"
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX=" %{$reset_color%}"