1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 12:30:32 +01:00

Add zsh configuration.

This commit is contained in:
Bert Peters
2015-03-20 15:08:57 +01:00
parent b98b8cde12
commit ca8a1523e2
2 changed files with 26 additions and 0 deletions

View File

@@ -41,5 +41,14 @@ echo "Installing vim."
confirmAndLink $DIR/vim/vimrc $HOME/.vimrc
confirmAndLink $DIR/vim $HOME/.vim
echo "Installing zsh"
if [ ! -e $HOME/.oh-my-zsh ]
then
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
rm $HOME/.zshrc
else
confirmAndLink $DIR/zshrc $HOME/.zshrc
fi
echo "Installation finished."