diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-29 19:14:13 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-10-29 19:14:13 -0600 |
commit | c24de867a4d036af486fdaa77b0fcccb148e2b98 (patch) | |
tree | 040e3e553c884b06f093af5ca9476c1a1edfed77 /themes | |
parent | a16fe1511ccf698432b7bbaccf250a7739ed2a92 (diff) | |
parent | 0ee89d965ecaa4f32cf2d1039e9d84a73eb206cf (diff) | |
download | zsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.tar.gz zsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.tar.bz2 zsh-c24de867a4d036af486fdaa77b0fcccb148e2b98.zip |
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bira.zsh-theme | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/themes/bira.zsh-theme b/themes/bira.zsh-theme index 1ead93553..4b2853c32 100644 --- a/themes/bira.zsh-theme +++ b/themes/bira.zsh-theme @@ -4,8 +4,10 @@ local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" if [[ $UID -eq 0 ]]; then local user_host='%{$terminfo[bold]$fg[red]%}%n@%m%{$reset_color%}' + local user_symbol='#' else local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}' + local user_symbol='$' fi local current_dir='%{$terminfo[bold]$fg[blue]%} %~%{$reset_color%}' @@ -20,8 +22,9 @@ fi local git_branch='$(git_prompt_info)%{$reset_color%}' PROMPT="╭─${user_host} ${current_dir} ${rvm_ruby} ${git_branch} -╰─%B$%b " -RPS1="${return_code}" +╰─%B${user_symbol}%b " +RPS1="%B${return_code}%b" ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" + |