vim智能补全插件YouCompleteMe环境安装
此安装环境为: Ubuntu16.04
一、需要下载或安装的资源:
二、简介
1. 首先确保vim版本至少7.3.598以上, 还有支持python
① 查看vim版本, 输入命令vim -version
② 查看vim是否支持python, 输入命令vim --version | grep python
如图显示与+python和-python, 这就说明我的vim是支持python的
三、使用Vundle安装YouCompleteMe
1. 安装Vundle
用git down下所有需要的资源, 没有安装git 自行安装git
执行命令如下命令:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
将Vundle下载到.vim文件夹下。
2. 安装YouCompleteMe
执行命令如下命令:
git clone https://github.com/Valloric/YouCompleteMe.git
将YCM下载到.vim/bundle下
下载完毕后, 手动检查仓库完整性, 切换到YouCompleteMe目录下, 输入如下命令:
git submodule update --init --recursive
posted on 2019-09-24 15:44 jiangsion 阅读(1271) 评论(0) 编辑 收藏 举报