1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-21 19:11:30 +01:00

update ale linters/fixers

This commit is contained in:
bretello 2019-12-21 01:04:46 +01:00
parent 6965891895
commit d79ea091a2

View File

@ -4,10 +4,8 @@ set splitbelow splitright
set autoread
" ALE configuration
let g:ale_linters['python'] = ['pylint']
let g:ale_fixers = { 'python': ['black'] , 'rust': ['rustfmt']}
let g:ale_linters['bash'] = ['bashlint']
let g:ale_fixers = {'python': ['black']}
let g:ale_linters = { 'python': ['pylint'], 'bash': ['bashlint'], 'rust': ['rustc'] }
let g:ale_lint_on_insert_leave = 1
let g:ale_fix_on_insert_leave = 1
let g:ale_lint_on_text_changed = 1