Skip to content
Charles Qiu edited this page Oct 30, 2017 · 15 revisions

Vim colors not working properly in terminal

Please add below shell code to your "~/.bashrc" file.

export TERM=xterm-256color

YouCompleteMe cannot complete some standard C/C++ headers

You need to add full paths of your headers to your "~/.vim/bundle/YouCompleteMe/third_party/ycmd/cpp/ycm/.ycm_extra_conf.py" file. For example:

'-isystem',
'/usr/include',
'-isystem',
'/usr/include/c++/4.8'
Clone this wiki locally