Vundle: instalar plugins
Para poder instalar cómodamente plugins instalamos Vundle.
Primero replicamos desde GIT el paquete Vundle:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
Editamos el .vimrc e insertamos esta configuración:
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Vundle set nocompatible " required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'gmarik/Vundle.vim' " Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin) " All of your Plugins must be added before the following line call vundle#end() " required filetype plugin indent on " required
Para instalar y procesar todos los plugins que se añadan a .vimrc debemos ejecutar vim y dentro teclear la orden :PluginInstall
Para más información de Vundle podemos ir a su web