This is my Vim configuration. I used Tim Pope's awesome pathogen plugin and on git submodules to create a tidy, extensible, and easily manageable Vim configuration, along the lines described here.
You can automatically install my Vim configuration using either wget:
wget --no-check-certificate https://github.com/mtortonesi/dotvim/raw/master/install/install.sh -O - | sh
or curl:
curl -L https://github.com/mtortonesi/dotvim/raw/master/install/install.sh | sh
Very, very simple:
mkdir -p $HOME/.vim/{autoload,bundle}
wget -O ~/.vim/autoload/pathogen.vim https://github.com/tpope/vim-pathogen/raw/master/autoload/pathogen.vim
git clone https://github.com/mtortonesi/dotvim.git
cd dotvim
git submodule update --init
ln -s $(pwd)/vimrc ~/.vimrc
ln -s $(pwd)/bundle/* ~/.vim/bundle