diff options
author | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-01-01 02:44:14 -0500 |
---|---|---|
committer | Matt Singleton <matthew.j.singleton@gmail.com> | 2011-01-01 02:44:14 -0500 |
commit | 76e4d24107fb9609ee70ae8884da3941df433356 (patch) | |
tree | 80eba006a871005eb51baa6bcc210e0235344cca /zshrc | |
parent | 102973acc18d962973038b16db23714acdd84de2 (diff) |
changing prompt time format
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -29,10 +29,7 @@ export PATH=/opt/local/bin:/opt/local/sbin:$PATH export PATH=/usr/local/texlive/2009basic/bin/universal-darwin:$PATH export PATH=$HOME/bin:$PATH -if [ "$TERM" != "dumb" ]; then - eval "`dircolors -b`" - alias ls='ls --color=auto' -fi +export LSCOLORS="exgxbxdxcxegedxbxgxcxd" function prompt_char { git branch >/dev/null 2>/dev/null && echo '±' && return @@ -56,7 +53,7 @@ function svn_prompt_info { PROMPT='%{$fg[yellow]%}%n%{$reset_color%}@%{$fg[green]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%} $(git_prompt_info)$(svn_prompt_info)$(prompt_char) %{$reset_color%}' -RPROMPT='%t' +RPROMPT='%D{%r}' ZSH_THEME_GIT_PROMPT_PREFIX="(" ZSH_THEME_GIT_PROMPT_SUFFIX=") " @@ -65,4 +62,3 @@ ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}✔%{$reset_color%}" export PAGER=most export EDITOR=vim -export FIGNORE=CVS:.svn |