mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
16 lines
625 B
Bash
16 lines
625 B
Bash
# get ruby version from either rvm or system ruby.
|
|
if [[ -s ~/.rvm/scripts/rvm ]] ; then
|
|
RPS1="%{%}%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt i v g)%{$reset_color%}"
|
|
else
|
|
RPS1="%{$fg[red]%}\$(ruby -e 'print RUBY_VERSION')%{$reset_color%} $EPS1"
|
|
fi
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$fg[white]%}%B$%b "
|
|
|
|
local host_name='%{$fg[white]%}%m%{$reset_color%}:'
|
|
local current_dir='%{$fg[blue]%}%~%{$reset_color%}'
|
|
local git_branch='$(git_prompt_info)'
|
|
local end_symbol=' %{$fg[white]%}%B$%b '
|
|
|
|
PROMPT="${host_name}${current_dir}${git_branch}${end_symbol}"
|