set nocompatible " be iMproved filetype off " required! set rtp+=~/.vim/bundle/vundle/ call vundle#begin() " vundle itself " on a fresh install you need to do: " > config submodules update --init " > vim -u .vim/bundles.vim +PluginInstall Plugin 'gmarik/vundle' " fugitive -- git handling Plugin 'tpope/vim-fugitive' " gitv -- gitk for vim Plugin 'gitv' " GUndo Plugin 'Gundo' " NERDTree Plugin 'The-NERD-tree' " Tagbar Plugin 'Tagbar' " vim-latex Plugin 'git://vim-latex.git.sourceforge.net/gitroot/vim-latex/vim-latex' " surround.vim Plugin 'surround.vim' " advanced matching Plugin 'matchit.zip' " alternate files Plugin 'a.vim' " toggle words Plugin 'toggle_words.vim' " syntactic checkers Plugin 'Syntastic' " projects Plugin 'project.tar.gz' " GPG Plugin 'gnupg.vim' " Snippet Management Plugin 'SirVer/ultisnips' Plugin 'honza/vim-snippets' " Some nice shortcuts Plugin 'unimpaired.vim' " i3 Syntax highlighting Plugin 'PotatoesMaster/i3-vim-syntax' " LiveScript support Plugin 'necoro/vim-ls' " YCM Plugin 'Valloric/YouCompleteMe' call vundle#end() filetype plugin indent on " required!