update ale linters/fixers

whole-command-tab-completion
bretello 2019-12-21 01:04:46 +01:00
parent 6965891895
commit d79ea091a2
1 changed files with 1 additions and 3 deletions

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