use vundle

This commit is contained in:
Haak Saxberg 2014-03-19 01:53:22 -07:00
parent 3412d914af
commit 46d13f69d9
5 changed files with 43 additions and 2 deletions

@ -0,0 +1 @@
Subproject commit 2d2690e41f875466b7de06f93e7ff93b8c50a9af

View file

@ -1,5 +1,41 @@
call pathogen#infect()
call pathogen#helptags()
set nocompatible " required
filetype off " required
"""" VUNDLE
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install bundles
"let path = '~/some/path/here'
"call vundle#rc(path)
" let Vundle manage Vundle, required
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-sensible'
Bundle 'tpope/vim-eunuch'
Bundle 'scrooloose/nerdtree'
Bundle 'tomtom/tcomment_vim'
Bundle 'tpope/vim-characterize'
Bundle 'klen/python-mode'
Bundle 'jonathanfilip/vim-lucius'
Bundle 'majutsushi/tagbar'
Bundle 'sjl/gundo.vim'
Bundle 'SirVer/ultisnips'
Bundle 'kien/ctrlp.vim'
Bundle 'terryma/vim-multiple-cursors'
Bundle 'myusuf3/numbers.vim'
Bundle 'airblade/vim-gitgutter'
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'maxbrunsfeld/vim-yankstack'
Bundle 'tpope/vim-surround'
Bundle 'scrooloose/syntastic'
Bundle 'Valloric/YouCompleteMe'
filetype plugin indent on " required
""" end vundle
"""" PLUGIN SETTINGS