From 1617d8116dfea9194ce33ecd6818cce5bf4e7c64 Mon Sep 17 00:00:00 2001
From: To1ne <toon@tonotdo.com>
Date: Mon, 12 Oct 2009 21:17:36 +0200
Subject: [PATCH 1/2] Added some comment

---
 lib/aliases.zsh    | 28 ++++++++++++++++++++++------
 lib/completion.zsh |  5 ++---
 2 files changed, 24 insertions(+), 9 deletions(-)

diff --git a/lib/aliases.zsh b/lib/aliases.zsh
index cd17781..da61685 100644
--- a/lib/aliases.zsh
+++ b/lib/aliases.zsh
@@ -1,19 +1,23 @@
+#!/bin/zsh
+
+# Push and pop directories on directory stack
 alias pu='pushd'
 alias po='popd'
 
-alias sc='ruby script/console'
-alias sd='ruby script/server --debugger'
+# Ruby related
 alias ss='thin --stats "/thin/stats" start'
 
-alias mr='mate CHANGELOG app config db lib public script spec test'
+# Basic directory operations
 alias .='pwd'
 alias ...='cd ../..'
 
+# Super user
 alias _='sudo'
 alias ss='sudo su -'
 
 #alias g='grep -in'
 
+# Git related
 alias g='git'
 alias gst='git status'
 alias gl='git pull'
@@ -24,24 +28,36 @@ alias gca='git commit -v -a'
 alias gb='git branch'
 alias gba='git branch -a'
 
+# Show history
 alias history='fc -l 1'
 
-alias ls='ls -F'
+# List direcory contents
+#alias ls='ls -F' # This messes up colors on my linux system
+alias l='ls -la'
 alias ll='ls -alr'
-alias l='ls'
-alias ll='ls -l'
 alias sl=ls # often screw this up
 
 alias sgem='sudo gem'
 
+# Find ruby file
 alias rfind='find . -name *.rb | xargs grep -n'
 
+# Git and svn mix
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
 
+# TextMate
 alias et='mate . &'
 alias ett='mate app config lib db public spec test Rakefile Capfile Todo &'
 alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
 alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
 
+## Ruby related
+# Ruby scripts
+alias sc='ruby script/console'
+alias sd='ruby script/server --debugger'
+
+# Editor Ruby file in TextMate
+alias mr='mate CHANGELOG app config db lib public script spec test'
+
 
 
diff --git a/lib/completion.zsh b/lib/completion.zsh
index 795903d..7a564d6 100644
--- a/lib/completion.zsh
+++ b/lib/completion.zsh
@@ -14,7 +14,7 @@ compinit
 zmodload -i zsh/complist
 
 ## case-insensitive (all),partial-word and then substring completion
-zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
+#zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
 
 zstyle ':completion:*' list-colors ''
 zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts )
@@ -32,8 +32,7 @@ zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-
 zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
 zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/known_hosts`
 
-
-#complete on history
+# Complete on history
 # zstyle ':completion:*:history-words' stop yes
 # zstyle ':completion:*:history-words' remove-all-dups yes
 # zstyle ':completion:*:history-words' list false

From 5816fdbf3c5732f557f94001e5eeeaa8c8994c97 Mon Sep 17 00:00:00 2001
From: Toon Claes <toon@tonotdo.com>
Date: Fri, 16 Oct 2009 22:12:31 +0200
Subject: [PATCH 2/2] extended path variable, temporary

---
 oh-my-zsh.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh
index 6e73519..dd6ffec 100644
--- a/oh-my-zsh.sh
+++ b/oh-my-zsh.sh
@@ -6,3 +6,6 @@ for config_file ($ZSH/lib/*.zsh) source $config_file
 
 # Load all of your custom configurations from custom/
 for config_file ($ZSH/custom/*.zsh) source $config_file
+
+
+export PATH=~/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/sbin:/opt/local/lib/postgresql83/bin