-
Notifications
You must be signed in to change notification settings - Fork 51
/
vundles.vim
110 lines (99 loc) · 2.32 KB
/
vundles.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
"
" dotphiles : https://github.com/dotphiles/dotphiles
"
" Essential vim plugins!
"
" Authors:
" Ben O'Hara <bohara@gmail.com>
"
" Vundle itself
Bundle 'gmarik/vundle'
" Required for settings
Bundle 'chriskempson/base16-vim'
" General
if count(g:vundles, 'general')
Bundle 'scrooloose/nerdtree'
Bundle 'YankRing.vim'
let g:yankring_history_dir = $HOME.'/.vim/'
let g:yankring_history_file = '.yankring_history'
""Bundle 'tpope/vim-repeat'
""Bundle 'AutoClose'
Bundle 'kien/ctrlp.vim'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle 'sudo.vim'
Bundle 'bronson/vim-trailing-whitespace'
Bundle 'mbbill/undotree'
Bundle 'mhinz/vim-signify'
Bundle 'Raimondi/delimitMate'
Bundle 'bling/vim-airline'
Bundle 'rodjek/vim-puppet'
endif
if count(g:vundles, 'git')
if executable('git')
Bundle 'tpope/vim-fugitive'
endif
endif
if count(g:vundles, 'hg')
if executable('hg')
Bundle 'k-takata/hg-vim'
endif
endif
" General Programming
if count(g:vundles, 'programming')
Bundle 'godlygeek/tabular'
if executable('ack')
Bundle 'mileszs/ack.vim'
endif
if v:version > 700
Bundle 'scrooloose/syntastic'
if executable('ctags')
Bundle 'majutsushi/tagbar'
endif
endif
endif
if count(g:vundles, 'completion')
Bundle 'Shougo/neocomplcache'
Bundle 'Shougo/neosnippet'
Bundle 'Shougo/neosnippet-snippets'
Bundle 'scrooloose/snipmate-snippets'
Bundle 'honza/vim-snippets'
Bundle 'Indent-Guides'
endif
" PHP
if count(g:vundles, 'php')
Bundle 'spf13/PIV'
endif
" Python
if count(g:vundles, 'python')
Bundle 'hynek/vim-python-pep8-indent'
let g:syntastic_python_flake8_args='--ignore=E501'
endif
" Javascript
if count(g:vundles, 'javascript')
Bundle 'leshill/vim-json'
Bundle 'groenewege/vim-less'
Bundle 'taxilian/vim-web-indent'
endif
" HTML
if count(g:vundles, 'html')
Bundle 'HTML-AutoCloseTag'
Bundle 'hail2u/vim-css3-syntax'
Bundle 'juvenn/mustache.vim'
endif
" Ruby
if count(g:vundles, 'ruby')
Bundle 'tpope/vim-rails'
endif
" Misc
if count(g:vundles, 'misc')
Bundle 'tpope/vim-markdown'
Bundle 'spf13/vim-preview'
Bundle 'tpope/vim-cucumber'
Bundle 'markcornick/vim-vagrant'
Bundle 'Puppet-Syntax-Highlighting'
Bundle 'ekalinin/Dockerfile.vim'
if v:version > 701
Bundle 'zhaocai/GoldenView.Vim'
endif
let g:goldenview__enable_default_mapping=0
endif