aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/cpp.vim
blob: 7d278bf5a73ba32ccb5da109445135b5b86506a5 (plain)
1
2
3
4
5
6
7
" This is for C but vim defines *.h as cpp type so here we have it
let b:ale_linters = ['cppcheck', 'cquery']
let b:ale_fixers = ['remove_trailing_lines', 'trim_whitespace']
"let g:ale_c_parse_compile_commands = 1

nmap <F8> :ALENext<cr>
nmap <F7> :ALEPrevious<cr>