|
|
@ -1,4 +1,4 @@ |
|
|
## [Help Maintain Vundle](https://github.com/gmarik/Vundle.vim/issues/383) |
|
|
|
|
|
|
|
|
## [Help Maintain Vundle](https://github.com/gmarik/Vundle.vim/issues/241) |
|
|
|
|
|
|
|
|
## About |
|
|
## About |
|
|
|
|
|
|
|
|
@ -29,8 +29,7 @@ |
|
|
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]. Also, |
|
|
|
|
|
see the [Tips] wiki page for some additional options. |
|
|
|
|
|
|
|
|
If you are using Windows, go directly to [Windows setup]. If you run into any issues, please consult the [FAQ]. |
|
|
|
|
|
|
|
|
2. Set up [Vundle]: |
|
|
2. Set up [Vundle]: |
|
|
|
|
|
|
|
|
@ -47,28 +46,30 @@ |
|
|
" 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() |
|
|
call vundle#rc() |
|
|
" alternatively, pass where Vundle should install plugins |
|
|
|
|
|
"call vundle#rc('~/some/plugin/directory') |
|
|
|
|
|
|
|
|
" alternatively, pass a path where Vundle should install plugins |
|
|
|
|
|
"let path = '~/some/path/here' |
|
|
|
|
|
"call vundle#rc(path) |
|
|
|
|
|
|
|
|
" 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. |
|
|
" Plugins are available for use after the Plugin command returns. |
|
|
|
|
|
" plugins on GitHub repos |
|
|
|
|
|
Plugin 'tpope/vim-fugitive' "A plugin for git integration |
|
|
|
|
|
" plugins from http://vim-scripts.org/vim/scripts.html |
|
|
|
|
|
|
|
|
" 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 |
|
|
Plugin 'L9' |
|
|
Plugin 'L9' |
|
|
" plugins not on GitHub |
|
|
|
|
|
|
|
|
Plugin 'FuzzyFinder' |
|
|
|
|
|
" scripts 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'} |
|
|
|
|
|
|
|
|
" ... |
|
|
|
|
|
|
|
|
filetype plugin indent on " required |
|
|
filetype plugin indent on " required |
|
|
" To ignore plugin indent changes, instead use: |
|
|
" To ignore plugin indent changes, instead use: |
|
|
@ -81,6 +82,7 @@ |
|
|
" :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 |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
@ -133,7 +135,6 @@ 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 |
|
|
|