aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/ftplugin/python.vim
blob: fe4ed31e393807698537077e1945f01b1cd8e0d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" Python

let g:lsp_settings = {}
let g:lsp_settings['pylsp'] =
    \ {
    \   'workspace_config': {'pylsp': {
    \     'configurationSources': ['flake8'],
    \     'plugins': {
    \	    '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},
    \	    'black': {'enabled': v:true},
    \     }
    \   }}
    \ }
ArKa projects. All rights to me, and your next child right arm.