allow custom bundle_dir

This commit is contained in:
gmarik 2011-04-23 02:23:26 -05:00
parent 86a8d196ea
commit 8565792679

View File

@ -28,7 +28,7 @@ au Filetype vundle call vundle#scripts#setup_view()
au Syntax vim syn keyword vimCommand Bundle au Syntax vim syn keyword vimCommand Bundle
func! vundle#rc() func! vundle#rc(...) abort
let g:bundle_dir = expand('$HOME/.vim/bundle') let g:bundle_dir = len(a:000) > 0 ? expand(a:1) : expand('$HOME/.vim/bundle')
call vundle#config#init() call vundle#config#init()
endf endf