We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c1e15 commit bc2d208Copy full SHA for bc2d208
config/neobundle.vim
@@ -8,7 +8,14 @@ call neobundle#rc(expand('~/.vim/bundle/'))
8
NeoBundleFetch 'Shougo/neobundle.vim'
9
10
" I like my searches to be faster
11
-NeoBundle 'Shougo/vimproc'
+NeoBundle 'Shougo/vimproc', {
12
+ \ 'build' : {
13
+ \ 'windows' : 'make -f make_mingw32.mak',
14
+ \ 'cygwin' : 'make -f make_cygwin.mak',
15
+ \ 'mac' : 'make -f make_mac.mak',
16
+ \ 'unix' : 'make -f make_unix.mak',
17
+ \ },
18
+ \ }
19
20
" Now for some bundles
21
NeoBundle 'tpope/vim-fugitive'
0 commit comments