diff options
author | zghember <zghpku@gmail.com> | 2014-12-11 19:47:29 +0800 |
---|---|---|
committer | zghember <zghpku@gmail.com> | 2014-12-11 19:47:29 +0800 |
commit | 6f70d288cc4625142413227109bf1eeac7e2a180 (patch) | |
tree | 9193150e9af5254ebbcec9bed3dcc1b172758898 /themes/jispwoso.zsh-theme | |
parent | 7f07facf41e97d0de250f565d5e514f1e6c998a2 (diff) | |
download | zsh-6f70d288cc4625142413227109bf1eeac7e2a180.tar.gz zsh-6f70d288cc4625142413227109bf1eeac7e2a180.tar.bz2 zsh-6f70d288cc4625142413227109bf1eeac7e2a180.zip |
Update theme "jispwoso" to support ret status and git
Diffstat (limited to 'themes/jispwoso.zsh-theme')
-rw-r--r-- | themes/jispwoso.zsh-theme | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/themes/jispwoso.zsh-theme b/themes/jispwoso.zsh-theme index cdfef3871..748430573 100644 --- a/themes/jispwoso.zsh-theme +++ b/themes/jispwoso.zsh-theme @@ -1,4 +1,10 @@ -PROMPT=$'%{$fg[green]%}%n@%m: %{$reset_color%}%{$fg[blue]%}%/%{$reset_color%} -%{$fg_bold[red]%}➜ %{$reset_color%} ' +local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)" +PROMPT=$'%{$fg[green]%}%n@%m: %{$reset_color%}%{$fg[blue]%}%/ %{$reset_color%}%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%} +${ret_status} %{$reset_color%} ' PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" + +ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |