adding updates for .zsh dir

This commit is contained in:
staticsafe 2012-03-08 12:21:32 -05:00
parent f5bf68c2c7
commit 10f763f71c
2 changed files with 14 additions and 1 deletions

0
envsetup.py Normal file → Executable file
View File

View File

@ -21,4 +21,17 @@ wget --no-check-certificate -O .conkyrc https://raw.github.com/staticsafe/dotfil
# vim dir
rm -r ~/.vim
wget -O vimdir.tar.bz2 http://dl.dropbox.com/u/2888062/vimdir.tar.bz2 || die 'Download failed!'
tar xjvf vimdir.tar.bz2
tar xjvf vimdir.tar.bz2
# zsh dir
if [ -d "~/dev/dotfiles" ] ; then
cd ~/dev/dotiles
git pull
ln -s ~/dev/dotfiles/.zsh ~/.zsh
else
mkdir ~/dev
cd ~/dev
git clone https://github.com/staticsafe/dotfiles.git
ln -s ~/dev/dotfiles/.zsh ~/.zsh
fi