1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update ALE and Neoformat settings

Disable ALE for C++/C linting since we use ccls.
This commit is contained in:
jdhao 2020-11-25 21:34:34 +08:00
parent 283356ee52
commit 2b77a8b9de

View File

@ -662,8 +662,6 @@ nmap P <Plug>(miniyank-autoPut)
" linters for different filetypes " linters for different filetypes
let g:ale_linters = { let g:ale_linters = {
\ 'vim': ['vint'], \ 'vim': ['vint'],
\ 'cpp': ['clang'],
\ 'c': ['clang']
\ } \ }
" Only run linters in the g:ale_linters dictionary " Only run linters in the g:ale_linters dictionary