mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 20:35:11 +01:00
git submodule to install vundle for vim; install script looted from rrix
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal 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
14
install.sh
Normal 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
|
||||||
Reference in New Issue
Block a user