CentOS安装YCM

来源:互联网 发布:阿提拉全面战争知乎 编辑:程序博客网 时间:2024/06/05 20:14

1、安装vundle

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

2、配置.vimrc

set nocompatible  filetype offset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()Plugin 'VundleVim/Vundle.vim'Plugin 'tpope/vim-fugitive'call vundle#end()     Bundle 'Valloric/YouCompleteMe'filetype plugin indent on

3、打开vim运行

:BundleInstall

4、安装必要工具

1、yum install gcc gcc-c++ make automake python-devel2、安装CMakewget http://www.cmake.org/cmake/resources/software.htmltar -zxv -f cmake-*.*.*.*.tar.gzcd cmake-*.*.*.*.tar.gz./bootstrapgmakegmake install

5、安装clang+llvm(这里用已经编译好的)

1、wget http://llvm.org/releases/3.5.1/clang+llvm-3.5.1-x86_64-fedora20.tar.xzxz -d clang+llvm-3.5.1-x86_64-fedora20.tar.xztar xvf clang+llvm-3.5.1-x86_64-fedora20.tarcd clang+llvm-3.5.1-x86_64-fedora20注:也可用tar xvf clang+llvm-3.5.1-x86_64-fedora20.tar.xz解压2、在/etc/profile这个档案最尾端添加以下两行代码:PATH=/usr/local/cmake/bin:/usr/clang_3_3/bin:$PATHexport PATH3、执行更新变量:source /etc/profile

6、进入YCM目录,运行

./install.sh –clang-completer

7、对~/.vimrc做配置

let g:ycm_global_ycm_extra_conf = '~/.vim/bundle/YouCompleteMe/third_party/y   cmd/cpp/ycm/.ycm_extra_conf.py'let g:ycm_confirm_extra_conf = 0let g:ycm_semantic_triggers = {  \   'c' : ['->', '    ', '.', ' ', '(', '[', '&'],\     'cpp,objcpp' : ['->', '.', ' ', '(', '[', '&', '::'],\     'perl' : ['->', '::', ' '],\     'php' : ['->', '::', '.'],\     'cs,java,javascript,d,vim,python,perl6,scala,vb,elixir,go' : ['.'],\     'ruby' : ['.', '::'],\     'lua' : ['.', ':']\ }
0 0