vim 语法补齐插件: YouCompleteMe

step1: download vundle plugin
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/Vundle.vim

step2: configure vundle plugin in vimrc
reference: .vim/bundle/Vundle.vim/README_ZH_CN.md

请将以下加在 .vimrc文件末尾 方可使用Vundle. 删掉你不需要的插件, 这些只是用做示例.

set nocompatible " 去除VI一致性,必须
filetype off " 必须

" 设置包括vundle和初始化相关的runtime path
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" 另一种选择, 指定一个vundle安装插件的路径
"call vundle#begin('~/some/path/here')

" 让vundle管理插件版本,必须
Plugin 'VundleVim/Vundle.vim'

" YouCompleteMe Plugin
Plugin 'Valloric/YouCompleteMe'

" 你的所有插件需要在下面这行之前
call vundle#end() " 必须
filetype plugin indent on " 必须 加载vim自带和插件相应的语法和文件类型相关脚本
" 忽视插件改变缩进,可以使用以下替代:
"filetype plugin on
"
" 简要帮助文档
" :PluginList - 列出所有已配置的插件
" :PluginInstall - 安装插件,追加 `!` 用以更新或使用 :PluginUpdate
" :PluginSearch foo - 搜索 foo ; 追加 `!` 清除本地缓存
" :PluginClean - 清除未使用插件,需要确认; 追加 `!` 自动批准移除未使用插件
"
" 查阅 :h vundle 获取更多细节和wiki以及FAQ
" 将你自己对非插件片段放在这行之后

step3: verify vundle
#vim .
#PluginList
如果你可看到下图效果,说明vundle安装成功
vim 语法补齐插件: YouCompleteMe_第1张图片
step4: install YouCompleteMe
#vim .
#PluginInstall
vim 语法补齐插件: YouCompleteMe_第2张图片

step5: install dependency libs
reference:~/.vim/bundle/YouCompleteMe/doc/youcompleteme.txt
sudo apt install build-essential cmake python3-dev

step6:
cd ~/.vim/bundle/YouCompleteMe
python3 install.py --clang-completer

python3 install.py --clangd-completer

python3 install.py

效果展示

vim 语法补齐插件: YouCompleteMe_第3张图片

你可能感兴趣的:(vim,vim,语法补齐,YouCompleteMe)