public
Clone URL: git://github.com/tomafro/houseshare.git
More changes, baby
tomafro (author)
Wed Jul 23 15:50:07 -0700 2008
commit  7d332bb71f380af93f28c05bbfae04ebdc02c884
tree    61f31ee35bc694574e776208d7cda5c4491e096a
parent  9033326483000a912774d471c4ad48b3ac795347
0
...
1
2
 
 
 
 
 
 
 
 
 
 
3
4
5
...
21
22
23
24
25
 
 
 
26
...
1
 
2
3
4
5
6
7
8
9
10
11
12
13
14
...
30
31
32
 
33
34
35
36
37
0
@@ -1,5 +1,14 @@
0
 export PATH=/opt/local/bin:/opt/local/sbin:$PATH
0
-export PROMPT=$'%{\e[0;34m%}%m%{\e[0;34m%}%~$ %{\e[0m%}'
0
+
0
+git_prompt_info() {
0
+ ref=$(git-symbolic-ref HEAD 2> /dev/null) || return
0
+ echo "(%{$fg[yellow]%}git:${ref#refs/heads/}%{$fg[blue]%})"
0
+}
0
+autoload -U colors
0
+colors
0
+setopt prompt_subst
0
+
0
+export PROMPT=$'%{$fg[blue]%}%m%{\e[0;34m%}%~$(git_prompt_info)$ %{\e[0m%}'
0
 export SVN_EDITOR='mate -w'
0
 export GIT_EDITOR='mate -w'
0
 export EDITOR='mate -w'
0
@@ -21,4 +30,6 @@ alias jgp='cd ~/Projects/jgp/aspire/trunk'
0
 
0
 setopt histignoredups
0
 
0
-# source $HOME/.rake_completion.zsh
0
\ No newline at end of file
0
+# source $HOME/.rake_completion.zsh
0
+
0
+cd ~/Projects
0
\ No newline at end of file
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@
0
   name = Tom Ward
0
   email = tom@popdog.net
0
 [core]
0
- excludesfile = ~/.gitignore
0
+ excludesfile = /Users/tomw/.gitignore
0
 [color]
0
   diff = auto
0
   status = auto
...
1
2
3
 
 
 
4
...
 
 
1
2
3
4
5
0
@@ -1,2 +1,3 @@
0
-.DS_Store
0
-.svn
0
\ No newline at end of file
0
+.DS\_Store
0
+.svn
0
+*.sqlite3
0
\ No newline at end of file

Comments

    No one has commented yet.