summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-02-05 03:35:44 +0100
committerache <ache@ache.one>2019-02-05 03:35:44 +0100
commitaa16a2a000c92588df85ee1069e986fdda8849af (patch)
tree7aae03d9c6137cb477477d9a01acafe10884105d
parentBug completion remap (diff)
Ale Error/Warning print
-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