Fix python lsp helpers
This commit is contained in:
parent
54183b69fa
commit
c69a1b829d
|
@ -32,12 +32,16 @@ function! ChangePythonLineLength() abort
|
||||||
let &l:colorcolumn = l:line_length + 1
|
let &l:colorcolumn = l:line_length + 1
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" call ChangePythonLineLength()
|
call ChangePythonLineLength()
|
||||||
|
|
||||||
let b:ale_linters = ['flake8', 'mypy']
|
let b:ale_linters = [
|
||||||
|
"\ 'flake8',
|
||||||
|
\ 'mypy',
|
||||||
|
\ 'pyls',
|
||||||
|
\]
|
||||||
let b:ale_fixers = [
|
let b:ale_fixers = [
|
||||||
\ 'autopep8',
|
"\ 'autopep8',
|
||||||
\ 'yapf',
|
"\ 'yapf',
|
||||||
\ 'black',
|
\ 'black',
|
||||||
\]
|
\]
|
||||||
let b:ale_completion_excluded_words = ['and', 'or', 'if']
|
let b:ale_completion_excluded_words = ['and', 'or', 'if']
|
||||||
|
|
Loading…
Reference in New Issue
Block a user