My .vimrc file looks like that:
set exrc
set secure
set number
set tabstop=2
set shiftwidth=2
set expandtab
set autoindent
set background=dark
set vb t_vb=
set colorcolumn=110
highlight Pmenu ctermfg=2 ctermbg=0 guifg=#ffffff guibg=#0000ff
highlight ColorColumn ctermbg=darkgray
autocmd CompleteDone * pclose
compiler g++
But, when I am opening some C++ files, I see such a message:
E666: compiler not supported: g++
What's the problem?
:compilerto get a list of available compilers.apt-get install g++?