2018-08-07 18:42:02 +00:00
|
|
|
|
# ZSH Theme - Preview: https://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
|
2010-07-30 12:27:32 +00:00
|
|
|
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
|
|
|
|
|
2014-01-08 09:45:05 +00:00
|
|
|
|
|
|
|
|
|
if [[ $UID -eq 0 ]]; then
|
2019-04-16 19:54:09 +00:00
|
|
|
|
local user_host='%{$terminfo[bold]$fg[red]%}%n@%m %{$reset_color%}'
|
2016-10-15 12:02:01 +00:00
|
|
|
|
local user_symbol='#'
|
2014-01-08 09:45:05 +00:00
|
|
|
|
else
|
2019-04-16 19:54:09 +00:00
|
|
|
|
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m %{$reset_color%}'
|
2016-10-15 12:02:01 +00:00
|
|
|
|
local user_symbol='$'
|
2014-01-08 09:45:05 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2019-04-16 19:54:09 +00:00
|
|
|
|
local current_dir='%{$terminfo[bold]$fg[blue]%}%~ %{$reset_color%}'
|
2012-01-24 01:42:54 +00:00
|
|
|
|
local rvm_ruby=''
|
|
|
|
|
if which rvm-prompt &> /dev/null; then
|
2019-04-16 19:54:09 +00:00
|
|
|
|
rvm_ruby='%{$fg[red]%}‹$(rvm-prompt i v g)› %{$reset_color%}'
|
2012-01-24 01:42:54 +00:00
|
|
|
|
else
|
|
|
|
|
if which rbenv &> /dev/null; then
|
2019-04-16 19:54:09 +00:00
|
|
|
|
rvm_ruby='%{$fg[red]%}‹$(rbenv version | sed -e "s/ (set.*$//")› %{$reset_color%}'
|
2012-01-24 01:42:54 +00:00
|
|
|
|
fi
|
|
|
|
|
fi
|
2019-04-16 19:54:09 +00:00
|
|
|
|
local git_branch='$(git_prompt_info)'
|
|
|
|
|
local venv_prompt='$(virtualenv_prompt_info)'
|
2010-07-30 12:27:32 +00:00
|
|
|
|
|
2019-04-16 19:54:09 +00:00
|
|
|
|
PROMPT="╭─${venv_prompt}${user_host}${current_dir}${rvm_ruby}${git_branch}
|
2016-10-15 12:02:01 +00:00
|
|
|
|
╰─%B${user_symbol}%b "
|
|
|
|
|
RPS1="%B${return_code}%b"
|
2010-07-30 12:27:32 +00:00
|
|
|
|
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
|
|
|
|
|
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
|
2016-10-15 12:02:01 +00:00
|
|
|
|
|
2016-04-03 09:27:04 +00:00
|
|
|
|
ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="%{$fg[green]%}‹"
|
|
|
|
|
ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX="› %{$reset_color%}"
|
2019-04-16 19:54:09 +00:00
|
|
|
|
|
|
|
|
|
ZSH_THEME_VIRTUALENV_PREFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX
|
|
|
|
|
ZSH_THEME_VIRTUALENV_SUFFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX
|