24Mar/150
generic linux youcompleteme install
# install vundle[1] mkdir -p ~/.vim/bundle cd ~/.vim/bundle git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim # edit your ~/.vimrc [2] # open vim, and enter :PluginInstall # YCM will be pulled but not installed: cd ~ mkdir ycm_build cd ycm_build cmake -G "Unix Makefiles" . ~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp -DUSE_SYSTEM_BOOST=ON -DUSE_SYSTEM_LIBCLANG=ON make ycm_support_libs # edit your global ~/.vim/.ycm_extra_conf.py [3]
[1] vundle: https://github.com/gmarik/Vundle.vim
[2] https://gist.github.com/cs0rbagomba/a06452fe7bd50cb39c8f
[3] https://gist.github.com/cs0rbagomba/49ded0d74042e95d74d1
Original YCM guide: https://github.com/Valloric/YouCompleteMe#full-installation-guide
Leave a comment