Add c/cxx fixers

This commit is contained in:
Alex D. 2022-09-06 18:04:48 +00:00
parent efcf76c766
commit 4bc1a5fb73
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 2 additions and 0 deletions

2
vimrc
View File

@ -33,6 +33,8 @@ let g:ale_fix_on_save = 1
let g:ale_hover_to_preview = 1
let g:ale_fixers = {
\ 'go': ['gofmt'],
\ 'c': ['clang-format'],
\ 'cpp': ['clang-format'],
\}
let g:ale_sign_error = 'E>'
let g:ale_sign_warning = 'W>'