en tu $HOME
git clone https://github.com/lascar/dotvim.git
obtienes un archivo dotvim
rm -Rf ~/.vim ~/.vimrc ln -s ~/dotvim ~/.vim ln -s ~/dotvim/vimrc ~/.vimrc cd ~/dotvim
git submodule init git submodule update --init --recursive
to update each module
git submodule foreach git pull origin master
git submodule add https://github.com/tpope/vim-haml.git bundle/vim-haml
git commit . -m "add vim-haml to the submodules"
git push -u origin master
remove a submodule (http://davidwalsh.name/git-remove-submodule)
Delete the relevant section from the .gitmodules file.
git add .gitmodules
Delete the relevant section from .git/config
git rm --cached bundle/submodule
(no trailing slash)
rm -rf .git/modules/bundle/
rm -rf bundle/
sudo aptitude install exuberant-ctags