diff --git a/README.textile b/README.textile index a38e2d7cf..489f5c82e 100644 --- a/README.textile +++ b/README.textile @@ -13,18 +13,18 @@ You can install this via the command line with either `curl` or `wget`. h4. via `curl` -@curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh@ +@curl -L https://github.com/jgrubb/oh-my-zsh/raw/master/tools/install.sh | sh@ h4. via `wget` -@wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh@ +@wget --no-check-certificate https://github.com/jgrubb/oh-my-zsh/raw/master/tools/install.sh -O - | sh@ h3. The manual way 1. Clone the repository - @git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh@ + @git clone git://github.com/jgrubb/oh-my-zsh.git ~/.oh-my-zsh@ 2. Create a new zsh config by copying the zsh template we've provided. diff --git a/plugins/drush/drush.plugin.zsh b/plugins/drush/drush.plugin.zsh new file mode 100644 index 000000000..f52d748b9 --- /dev/null +++ b/plugins/drush/drush.plugin.zsh @@ -0,0 +1,14 @@ +#aliases + +unalias d + +alias d='drush' +alias ds='drush status' +alias dcc='drush cc' +alias dcca='drush cc all' +alias dcct='drush cc "theme registry"' +alias ddl='drush pm-download' +alias dd='drush pm-disable' +alias de='drush pm-enable' +alias du='drush pm-update' +alias dif='drush image-flush' diff --git a/plugins/tmux/tmux.plugin.zsh b/plugins/tmux/tmux.plugin.zsh new file mode 100644 index 000000000..73064489e --- /dev/null +++ b/plugins/tmux/tmux.plugin.zsh @@ -0,0 +1,3 @@ +alias t='tmux' +alias ta='tmux attach -t' +alias tls='tmux list-sessions' diff --git a/tools/install.sh b/tools/install.sh index b080be3a1..a99da734f 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -5,7 +5,7 @@ then fi echo "\033[0;34mCloning Oh My Zsh...\033[0m" -hash git >/dev/null && /usr/bin/env git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh || { +hash git >/dev/null && /usr/bin/env git clone https://github.com/jgrubb/oh-my-zsh.git ~/.oh-my-zsh || { echo "git not installed" exit }