Revert bundle syntax update that may have caused pain for upgraders [Fix #588]
This commit is contained in:
@@ -4,18 +4,18 @@
|
||||
"
|
||||
" This file contains the list of plugin installed using vundle plugin manager.
|
||||
" Once you've updated the list of plugin, you can run vundle update by issuing
|
||||
" the command :PluginInstall from within vim or directly invoking it from the
|
||||
" the command :BundleInstall from within vim or directly invoking it from the
|
||||
" command line with the following syntax:
|
||||
" vim --noplugin -u vim/vundles.vim -N "+set hidden" "+syntax on" +PluginClean! +PluginInstall +qall
|
||||
" vim --noplugin -u vim/vundles.vim -N "+set hidden" "+syntax on" +BundleClean! +BundleInstall +qall
|
||||
" Filetype off is required by vundle
|
||||
filetype off
|
||||
|
||||
set rtp+=~/.vim/bundle/vundle/
|
||||
set rtp+=~/.vim/vundles/ "Submodules
|
||||
call vundle#begin()
|
||||
call vundle#rc()
|
||||
|
||||
" let Vundle manage Vundle (required)
|
||||
Plugin 'gmarik/vundle'
|
||||
Bundle "gmarik/vundle"
|
||||
|
||||
" YADR's vundles are split up by category into smaller files
|
||||
" This reduces churn and makes it easier to fork. See
|
||||
@@ -35,7 +35,5 @@ if filereadable(expand("~/.yadr/vim/.vundles.local"))
|
||||
source ~/.yadr/vim/.vundles.local
|
||||
endif
|
||||
|
||||
call vundle#end()
|
||||
|
||||
"Filetype plugin indent on is required by vundle
|
||||
filetype plugin indent on
|
||||
|
||||
Reference in New Issue
Block a user