From b3354f4d66f159c0d99e8ac55b541e261f887219 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 24 Oct 2017 06:48:27 +0200 Subject: [PATCH] Replacing syntastic with ALE --- .vimrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index e155441..a4b670a 100644 --- a/.vimrc +++ b/.vimrc @@ -156,7 +156,7 @@ Plugin 'Valloric/YouCompleteMe' " Code checker. For python, install flake8 or pylint, preferably in the " virtualenv. For Django support, install pylint-django -Plugin 'vim-syntastic/syntastic' +"Plugin 'vim-syntastic/syntastic' set statusline+=%#warningmsg# set statusline+=%{SyntasticStatuslineFlag()} set statusline+=%* @@ -187,6 +187,11 @@ let g:syntastic_python_pylint_post_args="--max-line-length=120 -d C0103,C0111" "let g:syntastic_python_pylint_exe = 'python $(which pylint)' +" Code checker. For python, install flake8 or pylint, preferably in the +" virtualenv. For Django support, install pylint-django +Plugin 'w0rp/ale' + + " Handy Markdown stuff "Plugin 'tpope/vim-markdown' Plugin 'godlygeek/tabular'