11 lines
401 B
Bash
11 lines
401 B
Bash
#!/bin/sh
|
|
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
|
|
mkdir -p $HOME/.oh-my-zsh/custom/plugins
|
|
cd $HOME/.oh-my-zsh/custom/plugins
|
|
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git
|
|
cd $HOME
|
|
rm -f $HOME/.zshrc
|
|
ln -s $HOME/.zcustom/.zshrc $HOME/.zshrc
|
|
ln -s $HOME/.zcustom/edorrington.zsh-theme.zsh $HOME/.oh-my-zsh/custom/edorrington.zsh-theme.zsh
|
|
|