-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc.neobundle
242 lines (168 loc) · 5.77 KB
/
.vimrc.neobundle
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
""".vimrc.neobundle
" Utility {{{
" vimproc : execute asynchronously from vim
NeoBundle 'Shougo/vimproc', {
\ 'build' : {
\ 'windows' : 'make -f make_mingw32.mak',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ },
\ }
" vimshell
NeoBundle 'Shougo/vimshell.git'
"NeoBundle 'Shougo/vimshell.git',
" \ { 'depends' : 'Shougo/vimproc' }
" vim-scripts repos
NeoBundle 'L9'
" utility to manage file
NeoBundle 'Shougo/vimfiler.git'
"NeoBundle 'Shougo/vimfiler.git',
" \ { 'depends' : 'Shougo/unite.vim' }
" keyword completion system
function! s:meet_neocomplete_requirements()
return has('lua') && (v:version > 703 || (v:version == 703 && has('patch885')))
endfunction
if s:meet_neocomplete_requirements()
NeoBundle 'Shougo/neocomplete.vim'
NeoBundleFetch 'Shougo/neocomplcache.vim'
else
NeoBundleFetch 'Shougo/neocomplete.vim'
NeoBundle 'Shougo/neocomplcache.vim'
endif
" snippet support
NeoBundle 'Shougo/neosnippet'
" Easy and high speed coding method
NeoBundle 'mattn/sonictemplate-vim'
" My template for sonictemplate.vim
NeoBundle 'rkaneko/sonictemplate-template.vim'
" commentary.vim : utility for handling comment
NeoBundle 'tpope/vim-commentary'
" QFixGrep : QuickFix + grep utility
NeoBundle 'fuenor/qfixgrep'
" qfreplace : QuickFix + replace utility
NeoBundle 'thinca/vim-qfreplace'
" browser utility
" NeoBundle 'tyru/open-browser.vim'
" syntax checker
NeoBundle 'scrooloose/syntastic'
" surround anything
NeoBundle 'tpope/vim-surround'
" Vim Outliner of Markups
NeoBundle 'vim-scripts/VOoM'
" sudo.vim
NeoBundle 'vim-scripts/sudo.vim'
" run a command and show its result
" NeoBundleLazy 'thinca/vim-quickrun',
" \ { 'autoload' : { 'filetypes' : ['html'] } }
" fuzzy finder
NeoBundle 'junegunn/fzf'
" }}}
" Unite {{{
" unite.vim : incredible vim plugin implemented with vim script
NeoBundle 'Shougo/unite.vim'
NeoBundle 'tsukkee/unite-help'
NeoBundle 'Shougo/unite-outline'
NeoBundle 'thinca/vim-unite-history'
NeoBundle 'tsukkee/unite-tag'
NeoBundle 'choplin/unite-vim_hacks'
NeoBundle 'Shougo/neomru.vim'
" }}}
" Appearance {{{
" lightline.vim : A light and configurable statusline for Vim
NeoBundle 'itchyny/lightline.vim'
" }}}
" Git {{{
" fugitive.vim : Git wrapper
" NeoBundle 'tpope/vim-fugitive'
" agit.vim : gitk clone for Vim
" NeoBundle 'cohama/agit.vim'
" }}}
" Scala {{{
" vim-scala : syntax highlight for scala lang
" 遅延ロード see : http://www.slideshare.net/Shougo/neobundlevim
NeoBundleLazy 'derekwyatt/vim-scala',
\ { 'autoload' : { 'filetypes' : ['scala'] } }
" }}}
" Cpp {{{
" syntax-hilight
NeoBundleLazy 'vim-jp/cpp-vim',
\ { 'autoload' : { 'filetypes' : ['cpp'] } }
" vim-altr : Switch to the missing file without interaction
NeoBundleLazy 'kana/vim-altr',
\ { 'autoload' : { 'filetypes' : ['cpp'] } }
" complete include
NeoBundleLazy 'osyo-manga/vim-stargate',
\ { 'autoload' : { 'filetypes' : ['cpp'] } }
" clang formatter
NeoBundleLazy 'rhysd/vim-clang-format',
\ { 'autoload' : { 'filetypes' : ['c', 'cpp', 'objc'] } }
" }}}
" groovy {{{
NeoBundleLazy 'rkaneko/groovy.vim',
\ { 'autoload' : { 'filetypes' : ['groovy'] } }
" }}}
" markdown {{{
" preview markdown
" NeoBundleLazy 'kannokanno/previm',
" \ { 'autoload' : { 'filetypes' : ['markdown'] } }
" Golang {{{
"vim-gocode depends on nsf/gocode
" NeoBundleLazy 'Blackrush/vim-gocode',
" \ { 'autoload' : { 'filetypes' : ['go'] } }
" NeoBundleLazy 'fatih/vim-go',
" \ { 'autoload' : { 'filetypes' : ['go'] } }
" NeoBundleLazy 'dgryski/vim-godef',
" \ { 'autoload' : { 'filetypes' : ['go'] } }
" }}}
" JavaScript {{{
" Vastly improved to coding JavaScript on Vim
NeoBundleLazy 'pangloss/vim-javascript',
\ { 'autoload' : { 'filetypes' : ['javascript'] } }
" React JSX syntax highlighting and indenting
NeoBundleLazy 'mxw/vim-jsx',
\ { 'autoload' : { 'filetypes' : ['javascript'] } }
"Generate JsDoc
NeoBundleLazy 'heavenshell/vim-jsdoc',
\ { 'autoload' : { 'filetypes' : ['javascript'] } }
" vim-react-snippets:
" NeoBundleLazy 'justinj/vim-react-snippets',
" \ { 'autoload' : { 'filetypes' : ['javascript'] } }
" React.js JSX support for syntax
NeoBundleLazy 'jaxbot/syntastic-react',
\ { 'autoload' : { 'filetypes' : ['javascript'] } }
"Google Closure's Soy templateing lauguage
" NeoBundle 'duganchen/vim-soy'
" }}}
" TypeScript {{{
" syntax highlight
NeoBundleLazy 'leafgarland/typescript-vim',
\ { 'autoload' : { 'filetypes' : ['typescript'] } }
" Make my Vim a TypeScript IDE
" NeoBundleLazy 'Quramy/tsuquyomi',
" \ { 'autoload' : { 'filetypes' : ['typescript'] } }
" }}}
" Schema {{{
"GraphQL
NeoBundleLazy 'jparise/vim-graphql',
\ { 'autoload' : { 'filetypes' : ['graphql', 'gql'] } }
" }}}
" nginx {{{
" nginx syntax
NeoBundleLazy 'vim-scripts/nginx.vim',
\ { 'autoload' : { 'filetypes' : ['nginx'] } }
" }}}
" {{{
" Dockerfile syntax
NeoBundleLazy 'ekalinin/Dockerfile.vim',
\ { 'autoload' : { 'filetypes' : ['Dockerfile'] } }
" }}}
" {{{
" Terraform integration
NeoBundleLazy 'hashivim/vim-terraform',
\ { 'autoload' : { 'filetypes' : ['terraform'] } }
" }}}
" Rust {{{
NeoBundleLazy 'rust-lang/rust.vim',
\ { 'autoload' : { 'filetypes' : ['rust'] } }
" }}}