1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Replacing syntastic with ALE

This commit is contained in:
2017-10-24 06:48:27 +02:00
parent 8edad9d0ab
commit b3354f4d66

7
.vimrc
View File

@@ -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'