diff options
Diffstat (limited to '.vim/after/ftplugin/python.vim')
-rw-r--r-- | .vim/after/ftplugin/python.vim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim index fe4ed31..bd158fa 100644 --- a/.vim/after/ftplugin/python.vim +++ b/.vim/after/ftplugin/python.vim @@ -1,16 +1,19 @@ " Python let g:lsp_settings = {} -let g:lsp_settings['pylsp'] = +let g:lsp_settings['pylsp-all'] = \ { - \ 'workspace_config': {'pylsp': { + \ 'workspace_config': {'pylsp-all': { \ 'configurationSources': ['flake8'], \ 'plugins': { + \ 'pyflakes' : {'enabled': v:false}, \ 'flake8': {'enabled': v:true}, \ 'mypy-ls': {'enabled': v:true, 'live_mode': v:false}, \ 'pylint': {'enabled': v:true}, \ 'pydocstyle': {'enabled': v:true}, \ 'pyls_isort': {'enabled': v:true}, + \ 'autopep8': {'enabled': v:false}, + \ 'yapf': {'enabled': v:false}, \ 'black': {'enabled': v:true}, \ } \ }} |