From 720686bd58ce9f8daad4749e546cd510cb7dc91b Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 3 Nov 2017 13:27:42 +0100 Subject: [PATCH] Some ALE configuration --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 5676bbb..78d3563 100644 --- a/.vimrc +++ b/.vimrc @@ -190,8 +190,13 @@ let g:syntastic_python_pylint_post_args="--max-line-length=120 -d C0103,C0111" " Code checker. For python, install flake8 or pylint, preferably in the " virtualenv. For Django support, install pylint-django Plugin 'w0rp/ale' +" Python specific setting +let g:ale_python_pylint_options="--max-line-length=120 -d C0103,C0111" " Show errors or warnings in the statusline let g:airline#extensions#ale#enabled = 1 +" UI +let g:ale_sign_error = '✗' +let g:ale_sign_warning = '⚠' " Handy Markdown stuff