use vundle
This commit is contained in:
parent
3412d914af
commit
46d13f69d9
5 changed files with 43 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue