summary refs log tree commit diff
path: root/_zshrc
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2012-01-08 00:58:00 -0500
committerJune McEnroe <programble@gmail.com>2012-01-08 00:58:00 -0500
commita714ad34d2fe98880bae25fb046b7ebd6a3f1693 (patch)
treed864a9ae3f3dccf486938121e3f14e9944f5da99 /_zshrc
parentUse smarttab in VIM (diff)
downloadsrc-a714ad34d2fe98880bae25fb046b7ebd6a3f1693.tar.gz
src-a714ad34d2fe98880bae25fb046b7ebd6a3f1693.zip
Pineapples
Diffstat (limited to '_zshrc')
-rw-r--r--_zshrc15
1 files changed, 8 insertions, 7 deletions
diff --git a/_zshrc b/_zshrc
index c272b998..60dd8a27 100644
--- a/_zshrc
+++ b/_zshrc
@@ -142,22 +142,23 @@ alias irb='ripl'
 
 function prompt_char {
 	#[ -e ".git" ] && echo '+' && return
-	git branch &> /dev/null && echo '+' && return
+	#git branch &> /dev/null && echo '+' && return
 	#[ -e ".hg" ] && echo '☿' && return
-	hg root &> /dev/null && echo '☿' && return
+	#hg root &> /dev/null && echo '☿' && return
 	#echo '$'
 	echo '%(!.#.$)'
 }
 
 function git_branch {
 	#[ -e ".git" ] && echo ':'${"$(cat .git/HEAD)"##*/}
+    #git branch &> /dev/null && echo -e '\033[32m:\033[33m'${"$(git branch)"##* } && return
 }
 
-#setopt PROMPT_SUBST
-function chpwd {
-    PROMPT="%{$terminfo[bold]$fg[green]%}[%{$fg[blue]%}%30<..<%~$(git_branch)%{$fg[green]%}]$(prompt_char)%{$terminfo[sgr0]$reset_color%} "
-}
-chpwd
+#setopt prompt_subst
+#function chpwd {
+PROMPT="%{$terminfo[bold]$fg[green]%}[%{$fg[blue]%}%30<..<%~$(git_branch)%{$fg[green]%}]$(prompt_char)%{$terminfo[sgr0]$reset_color%} "
+#}
+#chpwd
 RPROMPT="%(?..%{$terminfo[bold]$fg[green]%}[%{$fg[red]%}%?%{$fg[green]%}]%{$terminfo[sgr0]%})"
 
 source ~/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh