diff options
author | Robby Russell <robby@planetargon.com> | 2010-05-07 13:20:30 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2010-05-07 13:20:30 -0700 |
commit | 19ead08382510820c764d7298b9489574b532ffe (patch) | |
tree | 4e76218da8e352c737be9b1f4213f5e4013b9e2d | |
parent | 7a9d4ceb75cbba745a6c0cecf098f6625ce50411 (diff) | |
parent | 477835250273ce3f963e03ad4a75ca010f4d9972 (diff) | |
download | zsh-19ead08382510820c764d7298b9489574b532ffe.tar.gz zsh-19ead08382510820c764d7298b9489574b532ffe.tar.bz2 zsh-19ead08382510820c764d7298b9489574b532ffe.zip |
Merge remote branch 'NV/master'
-rw-r--r-- | themes/arrow.zsh-theme | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/arrow.zsh-theme b/themes/arrow.zsh-theme new file mode 100644 index 000000000..a23efd1d7 --- /dev/null +++ b/themes/arrow.zsh-theme @@ -0,0 +1,14 @@ +if [ "$(whoami)" = "root" ]; then NCOLOR="red"; else NCOLOR="yellow"; fi + +PROMPT='%{$fg[$NCOLOR]%}%c ➤ %{$reset_color%}' +RPROMPT='%{$fg[$NCOLOR]%}%p $(git_prompt_info)%{$reset_color%}' + +ZSH_THEME_GIT_PROMPT_PREFIX="git:" +ZSH_THEME_GIT_PROMPT_SUFFIX="" +ZSH_THEME_GIT_PROMPT_DIRTY="*" +ZSH_THEME_GIT_PROMPT_CLEAN="" + +# See http://geoff.greer.fm/lscolors/ +export LSCOLORS="exfxcxdxbxbxbxbxbxbxbx" +export LS_COLORS="di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=31;40:cd=31;40:su=31;40:sg=31;40:tw=31;40:ow=31;40:" + |