From 0a3db5bf2df0e14a07e8aac127ed671a5919c779 Mon Sep 17 00:00:00 2001 From: Carlos Cardoso Date: Wed, 24 Oct 2012 00:35:17 -0200 Subject: [PATCH] Updated repository references. --- README.textile | 10 +++++----- templates/zshrc.zsh-cadusk-mac | 1 + templates/zshrc.zsh-template | 1 + tools/install.sh | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.textile b/README.textile index a38e2d7cf..70996fd54 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/cadusk/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/cadusk/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/cadusk/oh-my-zsh.git ~/.oh-my-zsh@ 2. Create a new zsh config by copying the zsh template we've provided. @@ -47,7 +47,7 @@ h2. Usage * 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":https://wiki.github.com/robbyrussell/oh-my-zsh/themes that come bundled with _Oh My Zsh_. +** Take a look at the "current themes":https://wiki.github.com/cadusk/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 @@ -81,6 +81,6 @@ h2. Contributors This project wouldn't exist without all of our awesome users and contributors. -* "View our growing list of contributors":https://github.com/robbyrussell/oh-my-zsh/contributors +* "View our growing list of contributors":https://github.com/cadusk/oh-my-zsh/contributors Thank you so much! diff --git a/templates/zshrc.zsh-cadusk-mac b/templates/zshrc.zsh-cadusk-mac index 694122543..561564d9c 100644 --- a/templates/zshrc.zsh-cadusk-mac +++ b/templates/zshrc.zsh-cadusk-mac @@ -42,3 +42,4 @@ if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi unsetopt correctall # Themes override ls alias from aliases.zsh +alias tmux 'tmux -u2' diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 694122543..95ced48f8 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -42,3 +42,4 @@ if [ -e $HOME/bin ]; then export PATH="$HOME/bin:$PATH"; fi unsetopt correctall # Themes override ls alias from aliases.zsh +alias tmux='tmux -u2' diff --git a/tools/install.sh b/tools/install.sh index b080be3a1..89417989e 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/cadusk/oh-my-zsh.git ~/.oh-my-zsh || { echo "git not installed" exit }