@ -1,4 +1,4 @@
## [Help Maintain Vundle ](https://github.com/gmarik/Vundle.vim/issues/241 )
## [Help Maintain Vundle ](https://github.com/gmarik/Vundle.vim/issues/383 )
## About
## About
@ -29,7 +29,8 @@
Installation requires [Git] and triggers [`git clone`] for each configured repository to `~/.vim/bundle/` by default.
Installation requires [Git] and triggers [`git clone`] for each configured repository to `~/.vim/bundle/` by default.
Curl is required for search.
Curl is required for search.
If you are using Windows, go directly to [Windows setup]. If you run into any issues, please consult the [FAQ].
If you are using Windows, go directly to [Windows setup]. If you run into any issues, please consult the [FAQ]. Also,
see the [Tips] wiki page for some additional options.
2. Set up [Vundle]:
2. Set up [Vundle]:
@ -45,32 +46,31 @@
" set the runtime path to include Vundle and initialize
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install plugins
"let path = '~/some/path/here'
"call vundle#rc(path)
call vundle#begin()
" alternatively, pass where Vundle should install plugins
"call vundle#begin('~/some/plugin/directory')
" let Vundle manage Vundle, required
" let Vundle manage Vundle, required
Plugin 'gmarik/vundle'
Plugin 'gmarik/vundle'
" The following are examples of different formats supported.
" The following are examples of different formats supported.
" Keep Plugin commands between here and filetype plugin indent on.
" scripts on GitHub repos
Plugin 'tpope/vim-fugitive'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'tpope/vim-rails.git'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" scripts from http://vim-scripts.org/vim/scripts.html
" plugins on GitHub repos
Plugin 'tpope/vim-fugitive' "A plugin for git integration
" plugins from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
Plugin 'L9'
Plugin 'FuzzyFinder'
" scripts not on GitHub
" plugins not on GitHub
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
Plugin 'file:///home/gmarik/path/to/plugin'
" ...
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Plugin will clone to the folder 'finder' inside `~/.vim/bundle` .
" Use to avoid plugin name collisions.
Plugin 'FuzzyFinder', {'name': 'finder'}
" Plugins available after vundle#end() finishes.
call vundle#end()
filetype plugin indent on " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
" To ignore plugin indent changes, instead use:
"filetype plugin on
"filetype plugin on
@ -82,7 +82,6 @@
" :PluginClean(!) - confirm (or auto-approve) removal of unused plugins
" :PluginClean(!) - confirm (or auto-approve) removal of unused plugins
"
"
" see :h vundle for more details or wiki for FAQ
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Plugin commands are not allowed.
" Put your stuff after this line
" Put your stuff after this line
```
```
@ -135,6 +134,7 @@ see [Vundle contributors](https://github.com/gmarik/vundle/graphs/contributors)
[Vundle]:http://github.com/gmarik/vundle
[Vundle]:http://github.com/gmarik/vundle
[Windows setup]:https://github.com/gmarik/vundle/wiki/Vundle-for-Windows
[Windows setup]:https://github.com/gmarik/vundle/wiki/Vundle-for-Windows
[FAQ]:https://github.com/gmarik/vundle/wiki
[FAQ]:https://github.com/gmarik/vundle/wiki
[Tips]:https://github.com/gmarik/Vundle.vim/wiki/Tips-and-Tricks
[Vim]:http://www.vim.org
[Vim]:http://www.vim.org
[Git]:http://git-scm.com
[Git]:http://git-scm.com
[`git clone`]:http://gitref.org/creating/#clone
[`git clone`]:http://gitref.org/creating/#clone