Vundle This plugin is mainly used for plug-in management. It can be based on your configured plug-in address, automatically download, update, delete plug-ins, very useful
Address Https://github.com/gmarik/vundle
Then you wear a bundle directory under. Vim, and then put the vundle in it. There is also a more convenient way to use the following commands directly
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
After installation, add the following to your. VIMRC
"""""""""""""""""""""""""""""""Vundle.vim"You can manage, install, and uninstall your plugins"""""""""""""""""""""""""""""""It seems to be a must, and the back will reopenfiletype off"set the path to run and initialize the VundleSet rtp+=~/.vim/bundle/vundle/"set the installation directory of the plugin, default is Vundle"Call vundle#begin (' ~/some/path/here ')"all installation plugins are to begin and end.Call Vundle#begin ()"add Vundle to vundle management listBundle'Gmarik/vundle'""""""""""""""""""""""""""Repos, under other GitHub users, needs to write out "user name/repos name""""""""""""""""""""""""""method, variable listBundle'Majutsushi/tagbar'"Tree Displays the current directory structureBundle'Scrooloose/nerdtree'Bundle'Kien/ctrlp.vim'Bundle'Valloric/youcompleteme'"Show cache file ListBundle'Jlanzarotta/bufexplorer'"use tab to complete onlyBundle'Ervandew/supertab'"Add a plugin to a string () such as a package symbolBundle'Tpope/vim-surround'Bundle'Exvim/main'"Auto-Complete quotation marks, parentheses, etc.Bundle'raimondi/delimitmate'"Add CommentBundle'tpope/vim-commentary'""""""""""""""""""""""""""in GitHub vim-scripts user repos, only need to write repos name""""""""""""""""""""""""""View the current file directory, not displayed in the sidebar, but it doesn't feel nerdtree useful"Bundle ' Winfileexplorer '"Bundle ' Bufexplorer '""""""""""""""""""""""""""plugins that are not on GitHub need to write out git full path""""""""""""""""""""""""""Bundle ' Git://git.wincent.com/command-t.git '""""""""""""""""""""""""""get plug-ins from the local, such as some of their own written plugins""""""""""""""""""""""""""Bundle ' File://zhangshuli/.vim/plugin '"The sparkup vim script is in a subdirectory of this repo called Vim."Pass The path to set the Runtimepath properly.Bundle'Rstacruz/sparkup', {'RTP':'vim/'}"Avoid a name conflict with L9"looks like it's dealing with name collisions?"Bundle ' User/l9 ', {' name ': ' NewL9 '}""""""""""""""""""""""""""a plugin that feels less useful""""""""""""""""""""""""""window Manager-No one has been updated since 02, and many plugins do not support"Bundle ' Winmanager '"corresponds to the above beginCall vundle#end ()"corresponds to the above filetype offfiletype plugin indent on"to ignore plugin indent changes, instead use:"Brief Help": Bundlelist-list configured Plugins": Bundleinstall (!) -Install (update) plugins": Bundlesearch (!) Foo-search (or refresh cache first) for Foo": Bundleclean (!) -Confirm (or auto-approve) removal of unused plugins""see:h Vundle For more details or wiki for FAQ"Put your non-plugin stuff after this line"Configuring the default YCM_EXTRA_CONF.P
Vundle of Vim Plugin