|
|
{"name":"Vundle","tagline":"Vundle, the plug-in manager for Vim","body":"## About\r\n\r\n[Vundle] is short for _Vim bundle_ and is a [Vim] plugin manager.\r\n\r\n\r\n\r\n## Quick start\r\n\r\n1. Set up [Vundle]:\r\n\r\n ```\r\n $ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle\r\n ```\r\n\r\n2. Configure bundles:\r\n\r\n Sample `.vimrc`:\r\n\r\n ```vim\r\n set nocompatible \" be iMproved\r\n filetype off \" required!\r\n \r\n set rtp+=~/.vim/bundle/vundle/\r\n call vundle#rc()\r\n \r\n \" let Vundle manage Vundle\r\n \" required! \r\n Bundle 'gmarik/vundle'\r\n \r\n \" My bundles here:\r\n \"\r\n \" original repos on GitHub\r\n Bundle 'tpope/vim-fugitive'\r\n Bundle 'Lokaltog/vim-easymotion'\r\n Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}\r\n Bundle 'tpope/vim-rails.git'\r\n \" vim-scripts repos\r\n Bundle 'L9'\r\n Bundle 'FuzzyFinder'\r\n \" non-GitHub repos\r\n Bundle 'git://git.wincent.com/command-t.git'\r\n \" Git repos on your local machine (i.e. when working on your own plugin)\r\n Bundle 'file:///Users/gmarik/path/to/plugin'\r\n \" ...\r\n \r\n filetype plugin indent on \" required!\r\n \"\r\n \" Brief help\r\n \" :BundleList - list configured bundles\r\n \" :BundleInstall(!) - install (update) bundles\r\n \" :BundleSearch(!) foo - search (or refresh cache first) for foo\r\n \" :BundleClean(!) - confirm (or auto-approve) removal of unused bundles\r\n \"\r\n \" see :h vundle for more details or wiki for FAQ\r\n \" NOTE: comments after Bundle commands are not allowed.\r\n ```\r\n\r\n3. Install configured bundles:\r\n\r\n Launch `vim`, run `:BundleInstall` \r\n (or `vim +BundleInstall +qall` for CLI lovers)\r\n\r\n *Windows users*: see [Vundle for Windows](https://github.com/gmarik/vundle/wiki/Vundle-for-Windows)\r\n\r\n Installation requires [Git] and triggers [`git clone`](http://gitref.org/creating/#clone) for each configured repo to `~/.vim/bundle/`.\r\n\r\n\r\n## Why Vundle\r\n\r\n[Vundle] allows you to:\r\n\r\n- keep track of and configure your scripts right in `.vimrc`\r\n- [install] configured scripts (a.k.a. bundle) \r\n- [update] configured scripts\r\n- [search] by name [all available Vim scripts]\r\n- [clean] unused scripts up\r\n- run the above actions in a *single keypress* with [interactive mode]\r\n\r\n[Vundle] also:\r\n\r\n- manages the [runtime path] of your installed scripts\r\n- [regenerates help tags][helptags] automatically\r\n\r\n## Docs\r\n\r\nSee the [`:h vundle`](https://github.com/gmarik/vundle/blob/master/doc/vundle.txt) Vimdoc for more details.\r\n\r\n## People using Vundle\r\n\r\nsee [Examples](https://github.com/gmarik/vundle/wiki/Examples)\r\n\r\n## FAQ\r\n\r\nsee [the wiki](https://github.com/gmarik/vundle/wiki#faq)\r\n\r\n## Contributors\r\n\r\nsee [Vundle contributors](https://github.com/gmarik/vundle/graphs/contributors)\r\n\r\n*Thank you!*\r\n\r\n## Inspiration and ideas from\r\n\r\n* [pathogen.vim]\r\n* [Bundler]\r\n* [Scott Bronson](http://github.com/bronson)\r\n\r\n## Also\r\n\r\n* Vundle was developed and tested with [Vim] 7.3 on OS X, Linux and Windows\r\n* Vundle tries to be as [KISS](http://en.wikipedia.org/wiki/KISS_principle) as possible\r\n\r\n## TODO:\r\n[Vundle] is a work in progress, so any ideas and patches are appreciated.\r\n\r\n* ✓ activate newly added bundles on `.vimrc` reload or after `:BundleInstall`\r\n* ✓ use preview window for search results\r\n* ✓ Vim documentation\r\n* ✓ put Vundle in `bundles/` too (will fix Vundle help)\r\n* ✓ tests\r\n* ✓ improve error handling\r\n* allow specifying revision/version?\r\n* handle dependencies\r\n* show description in search results\r\n* search by description as well\r\n* make it rock!\r\n\r\n[Vundle]:http://github.com/gmarik/vundle\r\n[pathogen.vim]:http://github.com/tpope/vim-pathogen/\r\n[Bundler]:https://github.com/bundler/bundler\r\n[Vim]:http://www.vim.org\r\n[Git]:http://git-scm.com\r\n[all available Vim scripts]:http://vim-scripts.org/vim/scripts.html\r\n[helptags]:http://vimdoc.sourceforge.net/htmldoc/helphelp.html#:helptags\r\n[runtime path]:http://vimdoc.sourceforge.net/htmldoc/options.html#%27runtimepath%27\r\n\r\n[install]:https://github.com/gmarik/vundle/blob/master/doc/vundle.txt#L115-129\r\n[update]:https://github.com/gmarik/vundle/blob/master/doc/vundle.txt#L131-137\r\n[search]:https://github.com/gmarik/vundle/blob/master/doc/vundle.txt#L139-161\r\n[clean]:https://github.com/gmarik/vundle/blob/master/doc/vundle.txt#L171-L183\r\n[interactive mode]:https://github.com/gmarik/vundle/blob/master/doc/vundle.txt#L186-213\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
|