vim使用vundle

来源:互联网 发布:简书稿费一篇多少 知乎 编辑:程序博客网 时间:2024/05/20 09:06

果然简单多了。。。


git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle



set 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/'}Bundle 'tpope/vim-rails.git'" vim-scripts reposBundle 'L9'Bundle 'FuzzyFinder'" non github reposBundle 'git://git.wincent.com/command-t.git'" ... filetype plugin indent on     " required!"" Brief help  -- 此处后面都是vundle的使用命令" :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..


0 0