adding updates for .zsh dir
This commit is contained in:
parent
f5bf68c2c7
commit
10f763f71c
15
envupdate.sh
15
envupdate.sh
|
@ -21,4 +21,17 @@ wget --no-check-certificate -O .conkyrc https://raw.github.com/staticsafe/dotfil
|
||||||
# vim dir
|
# vim dir
|
||||||
rm -r ~/.vim
|
rm -r ~/.vim
|
||||||
wget -O vimdir.tar.bz2 http://dl.dropbox.com/u/2888062/vimdir.tar.bz2 || die 'Download failed!'
|
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
|
||||||
|
|
Loading…
Reference in New Issue