set nocompatible " be iMproved filetype off " required! set rtp+=~/.vim/bundle/vundle/ call vundle#rc() " vundle itself " on a fresh install you need to do: " > git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle " > vim -u .vim/bundles.vim +BundleInstall Bundle 'gmarik/vundle' " fugitive -- git handling Bundle 'tpope/vim-fugitive' " gitv -- gitk for vim Bundle 'gitv' " GUndo Bundle 'Gundo' " NERDTree Bundle 'The-NERD-tree' " Tagbar Bundle 'Tagbar' " vim-latex Bundle 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex' " surround.vim Bundle 'surround.vim' " advanced matching Bundle 'matchit.zip' " alternate files Bundle 'a.vim' " toggle words Bundle 'toggle_words.vim' " syntaxes Bundle 'lighttpd-syntax' " show TODO and XXX Bundle 'TaskList.vim' " syntactic checkers Bundle 'Syntastic' " projects Bundle 'project.tar.gz' filetype plugin indent on " required!