Updated reference to prezto (omz sorin)

This commit is contained in:
Yan Pritzker 2012-08-08 13:39:29 -07:00
parent b4bd099252
commit e51f19809d
2 changed files with 3 additions and 3 deletions

View File

@ -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 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 ```bash
git clone --recursive git://github.com/sorin-ionescu/prezto.git ~/.oh-my-zsh git clone --recursive git://github.com/sorin-ionescu/prezto.git ~/.oh-my-zsh

View File

@ -55,10 +55,10 @@ end
task :zsh_themes do task :zsh_themes do
if File.exist?("#{ENV['HOME']}/.oh-my-zsh/modules/prompt/functions") 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') 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") 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') run %{ ln -nfs #{ENV["PWD"]}/oh-my-zsh/themes/* $HOME/.oh-my-zsh/themes/ } if want_to_install?('zsh themes')
end end
end end