vim安装插件

1. 下载bundle

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


2.在vimrc中添加

" 开始使用Vundle的必须配置
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" === 使用Vundle来管理Vundle ===
Bundle 'gmarik/vundle'

3.再进入’vim’执行:BundleInstall安装插件


链接 : 》》
原文地址:https://www.cnblogs.com/chencesc/p/5306955.html