1
0
Fork 0

Added the one liner

pull/240/head
tUrG0n 12 years ago
parent 2250f93fa3
commit 10cd274443

@ -11,22 +11,9 @@ Installation
Oh My Zsh will work with any recent release of Zsh, but the minimum recommended Oh My Zsh will work with any recent release of Zsh, but the minimum recommended
version is 4.3.10. version is 4.3.10.
1. Clone the repository: Install using the following one liner:
git clone --recursive https://github.com/sorin-ionescu/oh-my-zsh.git ~/.oh-my-zsh ``curl https://raw.github.com/sorin-ionescu/prezto/master/install | sh``
2. Create a new Zsh configuration by copying the Zsh configuration file
runcoms provided:
for rcfile in ~/.oh-my-zsh/runcoms/z{shenv,shrc,login,logout}; do
cp -f $rcfile ~/.$rcfile:t
done
3. Set Zsh as your default shell:
chsh -s /bin/zsh
4. Open a new Zsh terminal window or tab.
### Mac OS X ### Mac OS X

@ -0,0 +1,12 @@
#!/bin/sh
echo "We will now install prezto."
git clone --recursive https://github.com/sorin-ionescu/oh-my-zsh.git ~/.oh-my-zsh
for rcfile in ~/.oh-my-zsh/runcoms/z{shenv,shrc,login,logout}; do
cp -f $rcfile ~/.$rcfile:t
done
chsh -s /bin/zsh
echo "Congrats! prezto is successfully installed. To test it open a new Zsh terminal window or tab."
Loading…
Cancel
Save