Created
December 8, 2012 11:02
-
-
Save sonots/4239842 to your computer and use it in GitHub Desktop.
Revisions
-
sonots revised this gist
Dec 13, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ do 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 -
sonots revised this gist
Dec 13, 2012 . 1 changed file with 7 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/bin/sh [[ -e ~/.dotfiles ]] || git clone git@github.com:sonots/.dotfiles.git ~/.dotfiles pushd ~/.dotfiles git submodule init git submodule update @@ -14,5 +14,10 @@ do 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 -
sonots revised this gist
Dec 8, 2012 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,7 @@ do [ $i = "." ] && continue [ $i = ".." ] && continue [ $i = ".git" ] && continue [ $i = "README.md" ] && continue ln -s ~/.dotfiles/$i ~/ done vim -c ':BundleInstall!' -c ':q!' -c ':q!' -
sonots renamed this gist
Dec 8, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sonots created this gist
Dec 8, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #!/bin/sh [[ -e ~/.dotfiles ]] || git clone git@github.com:sonots/.dotfiles.git ~/.dotfiles cd ~/.dotfiles git submodule init git submodule update for i in `ls -a` do [ $i = "." ] && continue [ $i = ".." ] && continue [ $i = ".git" ] && continue ln -s ~/.dotfiles/$i ~/ done vim -c ':BundleInstall!' -c ':q!' -c ':q!' cd -