自动化vim安装

自动化安装vim

环境:

vim version:VIM - Vi IMproved 8.1(安装vimplus会自动升级)
python version:Python 2.7.12
os :Ubuntu 16.04.5 LTS
kernel:4.4.0-142-generic

root用户下:
前提:由于YCM安装较慢,建议首先编辑~/vimplus/.vimrc文件,将Plugin 'Valloric/YouCompleteMe'删除,等待vimplus安装完成之后,手动安装。
git clone https://github.com/chxuan/vimplus.git
cd ./vimplus
./install.sh

手动安装YCM
wget -O ~/YouCompleteMe.tar.gz "http://106.53.74.248:8888/YouCompleteMe.tar.gz"
cp ~/YouCompleteMe.tar.gz ~/.vim/plugged
tar -zxvf YouCompleteMe.tar.gz
cd YouCompleteMe
./install.py --clang-completer#安装完成
cp ./third_party/ycmd/examples/.ycm_extra_conf.py ~/.vim/
vim ~/.vim/.ycm_extra_conf.py #将c/c++头文件添加到flags
#=======
 '-isystem',
 '/usr/include/c++/5.4.0',
#=======

#让vim与YouCompleteMe建立关联;
vim ~/.vimrc 
set rtp+=/root/.vim/plugged/YouCompleteMe
在.vimrc中YCM部分添加:
let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_conf.py' #之后所有的项目都参考.vim目录下的.ycm_extra_conf.py文件;
【建议】在.vimrc中YCM部分添加:
let g:ycm_global_ycm_extra_conf = '/.ycm_extra_conf.py' #这样在每个项目目录下都需要添加一个.ycm_extra_conf.py文件,可以达到每个项目所引用的头文件互相独立。

参考文献:
超级强大的vim配置
YCM dis not work

你可能感兴趣的:(linux)