Skip to content

Instantly share code, notes, and snippets.

@ymkjp
Forked from sonots/dotfiles.sh
Last active December 16, 2015 04:29
Show Gist options
  • Save ymkjp/5377526 to your computer and use it in GitHub Desktop.
Save ymkjp/5377526 to your computer and use it in GitHub Desktop.
#!/bin/sh
[[ -e ~/.dotfiles ]] || git clone git@github.com:ymkjp/.dotfiles.git ~/.dotfiles
pushd ~/.dotfiles
git submodule init
git submodule update
for i in `ls -a`
do
[ $i = "." ] && continue
[ $i = ".." ] && continue
[ $i = ".git" ] && continue
[ $i = "README.md" ] && continue
ln -s ~/.dotfiles/$i ~/
done
vim -c ':BundleInstall!' -c ':q!' -c ':q!'
if [ `uname` = "Darwin" ]; then
pushd ~/.dotfiles/.vim/bundle/vimproc
make -f make_mac.mak
popd
fi
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment