From a94fb316c179ec88e92a545c63cb81ff6d32f4a3 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 14 Feb 2020 16:37:49 +0100 Subject: [PATCH] fix ale lint_on_save option --- my_configs.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my_configs.vim b/my_configs.vim index 2b9ffcc..f7cdc75 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -5,9 +5,9 @@ set autoread " ALE configuration let g:ale_linters['python'] = ['pylint'] let g:ale_fixers = { 'python': ['black'] , 'rust': ['rustfmt']} -let g:ale_fix_on_save = 1 let g:ale_linters['bash'] = ['bashlint'] let g:ack_default_options = " --cc --cpp --shell --python" +" let g:ale_lint_on_save = 1 let g:ale_fix_on_save = 1 let g:ale_lint_on_insert_leave = 1 let g:ale_completion_enabled = 1