vim插件管理

1、vundle 功能:管理插件的插件

链接:https://blog.csdn.net/zzyczzyc/article/details/83244516

set nocompatible              " be iMproved, required
filetype off                  " required

set rtp+=~/.vim/bundle/Vundle.vim "也可改为绝对路径

call vundle#begin()
Plugin 'VundleVim/Vundle.vim'

"中间添加需要安装的插件


call vundle#end()            " required
filetype plugin indent on    " required

"所有其他配

2、vundle使用方法

链接:https://linux.cn/article-9416-1.html?pr

3、vundle与YouCompleteMe【自动补全神器】

链接:https://blog.csdn.net/liao20081228/article/details/80347889

你可能感兴趣的:(个人尝试)