1. качаем плагин
Windows:
git clone https://github.com/gmarik/Vundle.vim.git C:\Users\mcold\.vim\bundle\vundle.vim
Linux:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/vundle.vim
2. vim .vimrc
set nocompatible
filetype off
" the call the Vundle Plugin Opperation
set rtp+=C:\Users\mcold\.vim\bundle\Vundle.vim
call Vundle#begin()
Plugin 'gmarik/Vundle.vim'
call Vundle#end()
filetype plugin indent on
3. vim
:PluginInstall