summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xplugin/perso.vim10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugin/perso.vim b/plugin/perso.vim
index 830fb6c..b26ed14 100755
--- a/plugin/perso.vim
+++ b/plugin/perso.vim
@@ -164,3 +164,13 @@ xmap ga <Plug>(EasyAlign)
" Start interactive EasyAlign for a motion/text object (e.g. gaip)
nmap ga <Plug>(EasyAlign)
+
+
+" Ale message config :
+let g:ale_echo_msg_error_str = 'E'
+let g:ale_echo_msg_warning_str = 'W'
+let g:ale_echo_msg_format = '[%linter%] %s [%severity%]'
+
+" Ale only on save
+let g:ale_lint_on_text_changed = 'never'
+let g:ale_lint_on_enter = 0