-
Notifications
You must be signed in to change notification settings - Fork 2
/
bundle.vim
54 lines (50 loc) · 1.52 KB
/
bundle.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
""""""""""""""""""""""""""""""""""""""""""""""""""
"Detect filetype
""""""""""""""""""""""""""""""""""""""""""""""""""
filetype off
""""""""""""""""""""""""""""""""""""""""""""""""""
" Set bundle config
""""""""""""""""""""""""""""""""""""""""""""""""""
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
""""""""""""""""""""""""""""""""""""""""""""""""""
"Load Vim plugin from github
""""""""""""""""""""""""""""""""""""""""""""""""""
Plugin 'hobbestigrou/vimtips-fortune'
Plugin 'hobbestigrou/Mahewincs'
Plugin 'hobbestigrou/vim-mahewin-hub'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/syntastic'
Plugin 'godlygeek/tabular'
Plugin 'scrooloose/nerdcommenter'
Plugin 'kien/ctrlp.vim'
Plugin 'vim-scripts/Perl-MooseX.Declare-Syntax'
Plugin 'vim-scripts/ZoomWin'
Plugin 'hotchpotch/perldoc-vim'
Plugin 'majutsushi/tagbar'
Plugin 'ervandew/supertab'
Plugin 'tpope/vim-markdown'
Plugin 'mattn/webapi-vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'honza/vim-snippets'
Plugin 'garbas/vim-snipmate'
Plugin 'scrooloose/nerdtree'
Plugin 'Lokaltog/vim-powerline'
Plugin 'vim-scripts/netrw.vim'
Plugin 'fs111/pydoc.vim'
Plugin 'airblade/vim-gitgutter'
Plugin 'mattn/gist-vim'
Plugin 'thinca/vim-github'
Plugin 'vim-scripts/Tabmerge'
Plugin 'vim-scripts/django.vim'
Plugin 'rking/ag.vim'
Plugin 'davidhalter/jedi-vim'
Plugin 'groenewege/vim-less'
Plugin 'fatih/vim-go'
if filereadable(glob("~/.bundle.local"))
exe 'source ' . '~/.bundle.local'
endif
call vundle#end()
filetype plugin indent on