From e0be82139d67914d51148f4475116202edb6b2e9 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 14 Feb 2020 16:37:52 +0100 Subject: [PATCH] update ale fixers --- my_configs.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/my_configs.vim b/my_configs.vim index c257fdb..0f0ba72 100644 --- a/my_configs.vim +++ b/my_configs.vim @@ -4,8 +4,8 @@ set splitbelow splitright set autoread " ALE configuration -let g:ale_fixers = { 'python': ['black'] , 'rust': ['rustfmt']} -let g:ale_linters = { 'python': ['pylint'], 'bash': ['bashlint'], 'rust': ['rustc'] } +let g:ale_fixers = { 'python': ['black'] , 'rust': ['rustfmt'], } +let g:ale_linters = { 'python': ['pylint'], 'bash': ['bashlint'], 'rust': ['rustc'], 'yaml': ['yamllint'] } let g:ale_lint_on_insert_leave = 1 let g:ale_fix_on_insert_leave = 1 let g:ale_lint_on_text_changed = 1