Skip to content

Commit

Permalink
updated auto-complete plugin and installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
nu7hatch committed Mar 20, 2013
1 parent ea53087 commit edfeb5b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
@@ -1,6 +1,6 @@
[submodule "vendor/auto-complete"]
path = vendor/auto-complete
url = https://github.com/m2ym/auto-complete.git
url = git://github.com/auto-complete/auto-complete.git
[submodule "vendor/popup"]
path = vendor/popup
url = git://github.com/auto-complete/popup-el.git
Expand Down
8 changes: 7 additions & 1 deletion install.sh
@@ -1,7 +1,13 @@
#/bin/sh

[ -e ~/.emacs.d ] || mkdir -p ~/.emacs.d
cd ~/.emacs.d && git clone git://github.com/nu7hatch/nu7macs.git nu7macs

cd ~/.emacs.d
git clone git://github.com/nu7hatch/nu7macs.git nu7macs || exit 1

cd nu7macs
git submodule init
git submodule update || exit 1

echo ';; Emacs configuration for nu7s :)' > ~/.emacs
echo '(setq nu7macs-path "~/.emacs.d/nu7macs")' >> ~/.emacs
Expand Down

0 comments on commit edfeb5b

Please sign in to comment.