Compare commits

...

1 commit

Author SHA1 Message Date
eb5f327740 Vimrc: c++ 2017-03-16 15:58:47 +01:00

View file

@ -5,9 +5,9 @@ set background=dark
set number set number
set relativenumber set relativenumber
set tabstop=4 set tabstop=4
" set softtabstop=4 set softtabstop=4
set shiftwidth=4 set shiftwidth=4
set noexpandtab set expandtab
set smartindent set smartindent
set incsearch set incsearch
set ttimeoutlen=100 set ttimeoutlen=100
@ -75,6 +75,7 @@ let g:syntastic_tex_checkers = [ 'chktex' ]
"" Python "" Python
let g:syntastic_python_python_exec = '/usr/bin/python3' let g:syntastic_python_python_exec = '/usr/bin/python3'
"" C++ "" C++
let g:syntastic_cpp_checkers = ['g++']
let g:syntastic_cpp_compiler_options = '-std=c++14 -Wall -Wextra' let g:syntastic_cpp_compiler_options = '-std=c++14 -Wall -Wextra'
"" Disabled languages "" Disabled languages