diff options
author | Oxbian <got.dacs@slmail.me> | 2023-07-09 22:40:33 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-07-09 22:40:33 +0200 |
commit | cc11ccc1266ed8221f7210c4c165705634d71949 (patch) | |
tree | 1de291b17c45bdc160e4b64ae870565875a4163e | |
parent | 49a71d6d35b1cf495689a53048fab87421e2da82 (diff) | |
download | vimrc-cc11ccc1266ed8221f7210c4c165705634d71949.tar.gz vimrc-cc11ccc1266ed8221f7210c4c165705634d71949.zip |
Removing python useless linters
-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}, \ } \ }} |