您的位置:首页 > 其它

vim插件管理器vundle

2016-01-24 17:22 267 查看
安装: git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

set nocompatible " be iMproved

filetype off " required! /** 从这行开始,vimrc配置 **/

set rtp+=~/.vim/bundle/vundle/

call vundle#rc()

" let Vundle manage Vundle

" required!

Bundle 'gmarik/vundle'

" original repos on github (Github网站上非vim-scripts仓库的插件,按下面格式填写)

Bundle 'tpope/vim-fugitive'

Bundle 'Lokaltog/vim-easymotion'

转自:http://www.cnblogs.com/xia520pi/archive/2014/04/11/3659386.html

Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}

Bundle 'tpope/vim-rails.git'

" vim-scripts repos (vim-scripts仓库里的,按下面格式填写)

Bundle 'L9'

Bundle 'FuzzyFinder'

" non github repos (非上面两种情况的,按下面格式填写)

Bundle 'git://git.wincent.com/command-t.git'

" ...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: