From e51f19809dbaeb51614cffa151bd847854cb051e Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Wed, 8 Aug 2012 13:39:29 -0700 Subject: [PATCH] Updated reference to prezto (omz sorin) --- README.md | 2 +- Rakefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e0ba5e..66e2efa 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ If that doesn't work, move the OSX supplied ctags [like so](http://www.mattpolit sudo mv /usr/bin/ctags /usr/bin/ctags_original ``` -### [oh-my-zsh](https://github.com/sorin-ionescu/oh-my-zsh) +### [oh-my-zsh](https://github.com/sorin-ionescu/prezto) ```bash git clone --recursive git://github.com/sorin-ionescu/prezto.git ~/.oh-my-zsh diff --git a/Rakefile b/Rakefile index df5b879..afe1d59 100644 --- a/Rakefile +++ b/Rakefile @@ -55,10 +55,10 @@ end task :zsh_themes do if File.exist?("#{ENV['HOME']}/.oh-my-zsh/modules/prompt/functions") - puts "Detected oh-my-zsh @sorin-ionescu version." + puts "Detected prezto (oh-my-zsh @sorin-ionescu)." run %{ ln -nfs #{ENV["PWD"]}/oh-my-zsh/modules/prompt/functions/* $HOME/.oh-my-zsh/modules/prompt/functions/ } if want_to_install?('zsh themes') elsif File.exist?("#{ENV['HOME']}/.oh-my-zsh") - puts "Detected oh-my-zsh @robbyrussell version." + puts "Detected oh-my-zsh @robbyrussell." run %{ ln -nfs #{ENV["PWD"]}/oh-my-zsh/themes/* $HOME/.oh-my-zsh/themes/ } if want_to_install?('zsh themes') end end