Vundle Vim plugin manager 发表于 2011-11-10 | | 阅读次数 Vundle Setup Vundle1$ git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle Sample Config12345678910111213141516171819202122232425262728293031323334set nocompatible " be iMprovedfiletype off " required!set rtp+=~/.vim/bundle/vundle/call vundle#rc()" let Vundle manage Vundle" required! Bundle 'gmarik/vundle'" My Bundles here:"" original repos on githubBundle 'tpope/vim-fugitive'Bundle 'Lokaltog/vim-easymotion'Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}" vim-scripts reposBundle 'L9'Bundle 'FuzzyFinder'Bundle 'rails.vim'" non github reposBundle 'git://git.wincent.com/command-t.git'" ...filetype plugin indent on " required! "" Brief help" :BundleList - list configured bundles" :BundleInstall(!) - install(update) bundles" :BundleSearch(!) foo - search(or refresh cache first) for foo" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles"" see :h vundle for more details or wiki for FAQ" NOTE: comments after Bundle command are not allowed.. 本文作者: IIssNan 本文链接: http://notes.iissnan.com/2011/vundle-vim-plugin-manager/ 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN 许可协议。转载请注明出处!