install emacs.d via install.sh rather than submodule

This commit is contained in:
James Walker 2013-01-05 14:56:32 -05:00
parent 5e3a7ed625
commit 8ba5377a3e
3 changed files with 5 additions and 4 deletions

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "emacs.d"]
path = emacs.d
url = https://github.com/walkah/emacs.d.git

@ -1 +0,0 @@
Subproject commit cd96cafc2c834dce6d300dae5ff8813b7d747c58

View File

@ -5,6 +5,11 @@ if [ ! -d ~/.oh-my-zsh ]; then
git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
fi
# Install emacs.d
if [ ! -d ~/.emacs.d ]; then
git clone https://github.com/walkah/emacs.d.git ~/.emacs.d
fi
DOTFILES=`cd $(dirname $0); pwd`
for FILE in $DOTFILES/*; do