diff --git a/ftplugin/python.vim b/ftplugin/python.vim index 9cfd459..e42535e 100644 --- a/ftplugin/python.vim +++ b/ftplugin/python.vim @@ -32,12 +32,16 @@ function! ChangePythonLineLength() abort let &l:colorcolumn = l:line_length + 1 endfunction -" call ChangePythonLineLength() +call ChangePythonLineLength() -let b:ale_linters = ['flake8', 'mypy'] +let b:ale_linters = [ +"\ 'flake8', +\ 'mypy', +\ 'pyls', +\] let b:ale_fixers = [ -\ 'autopep8', -\ 'yapf', +"\ 'autopep8', +"\ 'yapf', \ 'black', \] let b:ale_completion_excluded_words = ['and', 'or', 'if']