Merge pull request #292 from skwp/vundles_local

Add .vundles.local to allow per-installation plugin customization
This commit is contained in:
Yan Pritzker
2013-04-29 20:25:27 -07:00
3 changed files with 10 additions and 1 deletions

View File

@@ -102,5 +102,13 @@ Bundle "airblade/vim-gitgutter.git"
Bundle "bogado/file-line.git"
Bundle "tpope/vim-rvm.git"
Bundle "nelstrom/vim-visual-star-search"
" Customization
" The plugins listed in ~/.vim/.vundles.local will be added here to
" allow the user to add vim plugins to yadr without the need for a fork.
if filereadable(expand("~/.yadr/vim/.vundles.local"))
source ~/.yadr/vim/.vundles.local
endif
"Filetype plugin indent on is required by vundle
filetype plugin indent on