今天就跟大家聊聊有关怎么在Centos中安装YCM,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。安装vundle git clone https://G
今天就跟大家聊聊有关怎么在Centos中安装YCM,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
安装vundle
git clone https://GitHub.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
配置.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
打开vim运行
:BundleInstall
安装必要工具
yum install GCc gcc-c++ make automake python-devel
2、安装CMake
wget Http://www.cmake.org/cmake/resources/software.html tar -zxv -f cmake-*.*.*.*.tar.gz cd cmake-*.*.*.*.tar.gz ./bootstrap gmake gmake install
安装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
进入YCM目录,运行
./install.sh –clang-completer
对~/.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' : ['.', ':']\ }
看完上述内容,你们对怎么在CentOS中安装YCM有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网精选频道,感谢大家的支持。
--结束END--
本文标题: 怎么在CentOS中安装YCM
本文链接: https://lsjlt.com/news/258826.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0