1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

git submodule to install vundle for vim; install script looted from rrix

This commit is contained in:
Michiel Scholten
2014-05-05 20:34:28 +02:00
parent 18c0205638
commit 095dc7c1fe
2 changed files with 17 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule ".vim/bundle/vundle"]
path = .vim/bundle/vundle
url = https://github.com/gmarik/vundle.git

14
install.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
# inspired by rrix' dotfiles
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
echo "INFO: Init submodules"
git submodule init
echo "INFO: Update submodules"
git submodule update
echo "INFO: Vundle Install"
vim +BundleInstall +qall