diff options
author | dstufft <donald.stufft@gmail.com> | 2010-03-24 08:51:57 +0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2010-05-08 04:26:15 +0800 |
commit | 147acd22377d06eb41f4c4368ba33b98c9bbd034 (patch) | |
tree | 86d10e82559088332a17ae01a43b9f61f8ff1a2a | |
parent | 36f1f4e51595943d0b8e06a9078aa6f627a9734d (diff) | |
download | zsh-147acd22377d06eb41f4c4368ba33b98c9bbd034.tar.gz zsh-147acd22377d06eb41f4c4368ba33b98c9bbd034.tar.bz2 zsh-147acd22377d06eb41f4c4368ba33b98c9bbd034.zip |
added the dstufft theme (based on prose by sjl)
-rw-r--r-- | themes/dstufft.zsh-theme | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/themes/dstufft.zsh-theme b/themes/dstufft.zsh-theme new file mode 100644 index 000000000..5a23fcea5 --- /dev/null +++ b/themes/dstufft.zsh-theme @@ -0,0 +1,19 @@ +function prompt_char { + git branch >/dev/null 2>/dev/null && echo '±' && return + hg root >/dev/null 2>/dev/null && echo 'Hg' && return + echo '○' +} + +function virtualenv_info { + [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' +} + +PROMPT=' +%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(git_prompt_info) +$(virtualenv_info)$(prompt_char) ' + +ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}" +ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" +ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?" +ZSH_THEME_GIT_PROMPT_CLEAN="" |