From 4a4262343f76823a6c038b2219de61d26149cc27 Mon Sep 17 00:00:00 2001
From: James Rowe <jnrowe@gmail.com>
Date: Sun, 9 May 2010 21:17:20 +0800
Subject: [PATCH 1/8] Don't auto-correct ebuild commands.

It breaks "ebuild <foo> manifest", as there are Manifest files in the directory.
---
 lib/correction.zsh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/correction.zsh b/lib/correction.zsh
index a96f7ff..043320a 100644
--- a/lib/correction.zsh
+++ b/lib/correction.zsh
@@ -6,3 +6,4 @@ alias mysql='nocorrect mysql'
 alias mkdir='nocorrect mkdir'
 alias gist='nocorrect gist'
 alias heroku='nocorrect heroku'
+alias ebuild='nocorrect ebuild'

From f87db739c05766a959421781eab79a93d13a8a5b Mon Sep 17 00:00:00 2001
From: James Rowe <jnrowe@gmail.com>
Date: Sun, 9 May 2010 21:16:33 +0800
Subject: [PATCH 2/8] Ignore commands that start with a space.

This is useful when you want to use a dangerous command, as it won't be
available with history searching.
---
 lib/history.zsh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/history.zsh b/lib/history.zsh
index 509be8f..ca6f570 100644
--- a/lib/history.zsh
+++ b/lib/history.zsh
@@ -10,6 +10,7 @@ setopt hist_verify
 setopt inc_append_history
 setopt extended_history
 setopt hist_expire_dups_first
+setopt hist_ignore_space
 
 setopt SHARE_HISTORY
 setopt APPEND_HISTORY

From e10d8beba837b1fc2db0cb8897d8e2cd10b8f198 Mon Sep 17 00:00:00 2001
From: James Rowe <jnrowe@gmail.com>
Date: Sun, 9 May 2010 22:23:11 +0800
Subject: [PATCH 3/8] Don't display dotfiles or reverse sort with ll alias.

The ll alias is a very common default for bash in Linux distributions, so use
that definition.
---
 lib/aliases.zsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/aliases.zsh b/lib/aliases.zsh
index 89c904a..80760a1 100644
--- a/lib/aliases.zsh
+++ b/lib/aliases.zsh
@@ -18,7 +18,7 @@ alias history='fc -l 1'
 # List direcory contents
 alias lsa='ls -lah'
 alias l='ls -la'
-alias ll='ls -alr'
+alias ll='ls -l'
 alias sl=ls # often screw this up
 
 alias afind='ack-grep -il'

From 83e8aa50869367c64cfcd727b98155d7692faa8b Mon Sep 17 00:00:00 2001
From: James Rowe <jnrowe@gmail.com>
Date: Thu, 12 Nov 2009 14:52:53 +0800
Subject: [PATCH 4/8] Added a minimum zsh version note.

---
 README.textile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.textile b/README.textile
index 950f886..23d8b53 100644
--- a/README.textile
+++ b/README.textile
@@ -4,6 +4,8 @@ bq. "OH MY ZSHELL!"
 
 h2. Setup
 
+@oh-my-zsh@ should work with any recent release of "zsh":http://www.zsh.org/, the minimum recommended version is 4.3.9.
+
 h3. The automatic installer... (do you trust me?)
 
 @wget http://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@

From 0d22789e97760f463356fbe57075d86867e9f0c1 Mon Sep 17 00:00:00 2001
From: James Rowe <jnrowe@gmail.com>
Date: Sun, 22 Nov 2009 01:38:55 +0800
Subject: [PATCH 5/8] Don't correct hpodder commands.

---
 lib/correction.zsh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/correction.zsh b/lib/correction.zsh
index 043320a..fc60dcd 100644
--- a/lib/correction.zsh
+++ b/lib/correction.zsh
@@ -7,3 +7,4 @@ alias mkdir='nocorrect mkdir'
 alias gist='nocorrect gist'
 alias heroku='nocorrect heroku'
 alias ebuild='nocorrect ebuild'
+alias hpodder='nocorrect hpodder'

From ac13115d22a4a1f16f6c512f600d38317484e108 Mon Sep 17 00:00:00 2001
From: Takashi Yoshida <takashi@takashiyoshida.org>
Date: Mon, 31 May 2010 00:56:26 +0800
Subject: [PATCH 6/8] Added my own theme.

---
 themes/takashiyoshida.zsh-theme | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 themes/takashiyoshida.zsh-theme

diff --git a/themes/takashiyoshida.zsh-theme b/themes/takashiyoshida.zsh-theme
new file mode 100644
index 0000000..419a8cf
--- /dev/null
+++ b/themes/takashiyoshida.zsh-theme
@@ -0,0 +1,27 @@
+#
+# PROMPT
+#
+PROMPT_BRACKET_BEGIN='%{$fg_bold[white]%}['
+PROMPT_HOST='%{$fg_bold[cyan]%}%m'
+PROMPT_SEPARATOR='%{$reset_color%}:'
+PROMPT_DIR='%{$fg_bold[yellow]%}%c'
+PROMPT_BRACKET_END='%{$fg_bold[white]%}]'
+
+PROMPT_USER='%{$fg_bold[white]%}%n'
+PROMPT_SIGN='%{$reset_color%}%#'
+
+GIT_PROMPT_INFO='$(git_prompt_info)'
+
+# My current prompt looks like:
+# [host:current_dir] (git_prompt_info)
+# [username]%
+PROMPT="${PROMPT_BRACKET_BEGIN}${PROMPT_HOST}${PROMPT_SEPARATOR}${PROMPT_DIR}${PROMPT_BRACKET_END}${GIT_PROMPT_INFO}
+${PROMPT_BRACKET_BEGIN}${PROMPT_USER}${PROMPT_BRACKET_END}${PROMPT_SIGN} "
+
+#
+# Git repository
+#
+ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
+ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
+ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
+ZSH_THEME_GIT_PROMPT_CLEAN=''

From 65b43db5b374a57943121053863422e41208c5bc Mon Sep 17 00:00:00 2001
From: Tobias Birmili <birmilts@studi.informatik.uni-stuttgart.de>
Date: Sun, 6 Jun 2010 18:42:25 +0800
Subject: [PATCH 7/8] added plugin to control macports mysql-server
 installation

---
 plugins/mysql-macports.plugin.zsh | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 plugins/mysql-macports.plugin.zsh

diff --git a/plugins/mysql-macports.plugin.zsh b/plugins/mysql-macports.plugin.zsh
new file mode 100644
index 0000000..63b881c
--- /dev/null
+++ b/plugins/mysql-macports.plugin.zsh
@@ -0,0 +1,6 @@
+# commands to control local mysql-server installation
+# paths are for osx installtion via macports
+
+alias mysqlstart='sudo /opt/local/bin/mysqld_safe5'
+alias mysqlstop='/opt/local/bin/mysqladmin5 -u root -p shutdown'
+alias mysqlstatus='mysqladmin5 -u root -p ping'
\ No newline at end of file

From 33d4faa92889734fd6f1ac145cc9a906af39d45a Mon Sep 17 00:00:00 2001
From: toabi <tobias@codingcorsairs.com>
Date: Sun, 6 Jun 2010 22:14:13 +0800
Subject: [PATCH 8/8] updated the readme

---
 README.textile | 22 ++++++++--------------
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/README.textile b/README.textile
index 23d8b53..8b1b687 100644
--- a/README.textile
+++ b/README.textile
@@ -27,22 +27,19 @@ h3. The manual way
 
   @chsh -s /bin/zsh@
 
-4. Start / restart zsh (open a new terminal is easy enough..)
+4. Start / restart zsh (open a new terminal is easy enough...)
 
 h3. Problems?
 
-You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to oh-my-zsh.
+You _might_ need to modify your PATH in ~/.zshrc if you're not able to find some commands after switching to _Oh My Zsh_.
 
 h2. Usage
 
-TODO: Update this..
-
-* Rake autocomplete: @rake (tab)@. Will generate a cache of all your rake tasks and then let you auto-complete and/or select the task to run.
-* ssh autocomplete: @ssh (tab)@ or @scp (tab)@
-* Git branch, it'll tell you which branch you're in when you're in a git repository directory.
+* enable the plugins you want in your @~/.zshrc@ (take a look at @plugins/@ to see what's possible)
+** example: @plugins=(git osx ruby)@
 * Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@.
-** Take a look at the "current themes":http://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with Oh My Zsh.
-* much much more..
+** Take a look at the "current themes":http://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_.
+* much much more...  take a look at @lib/@ what _Oh My Zsh_ offers...
 
 h2. Useful
 
@@ -51,6 +48,7 @@ the "refcard":http://www.bash2zsh.com/zsh_refcard/refcard.pdf is pretty tasty fo
 h3. Customization
 
 If you want to override any of the default behavior, just add a new file (ending in @.zsh@) into the @custom/@ directory.
+If you have many functions which go good together you can put them as a *.plugin.zsh file in the @plugin/@ directory and then enable this plugin.
 
 h3. Uninstalling
 
@@ -68,8 +66,4 @@ I'm far from being a zsh-expert and suspect there are many ways to improve. If y
 
 h3. Send us your theme!
 
-I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
-
-h3. Todo from imajes:
-
-* need to make the title bar support git folder
\ No newline at end of file
+I'm hoping to collect a bunch of themes for our command prompts. You can see existing ones in the @themes/@ directory.
\ No newline at end of file