From 00797d8f9916f8178b90b8c87e344bc319f63248 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 13 Mar 2018 11:46:26 -0400 Subject: [PATCH] Configure all options for when to lint with ale (regardless of their defaults, for easy access later) --- vim/config/plugins/ale.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/config/plugins/ale.vim b/vim/config/plugins/ale.vim index 0c34dcf..286b963 100644 --- a/vim/config/plugins/ale.vim +++ b/vim/config/plugins/ale.vim @@ -17,6 +17,7 @@ let g:ale_fix_on_save = 0 " configure when to lint let g:ale_lint_on_text_changed = 'normal' let g:ale_lint_on_enter = 1 +let g:ale_lint_on_filetype_changed = 1 let g:ale_lint_on_save = 1 let g:ale_lint_on_insert_leave = 1