mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
12 lines
404 B
VimL
12 lines
404 B
VimL
let g:coc_global_extensions += ['coc-python']
|
|
let g:coc_filetypes += ['python']
|
|
let g:coc_user_config['pyls.plugins.pycodestyle.ignore'] = ['E501']
|
|
let g:coc_user_config['python'] = {
|
|
\ 'autocomplete': { 'showAdvancedMembers': v:false },
|
|
\ 'formatting': { 'provider': 'black' },
|
|
\ 'linting': {
|
|
\ 'pylintEnabled': v:false,
|
|
\ 'flake8Enabled': v:true,
|
|
\ 'flake8Args': ['--ignore', 'E501'],
|
|
\ },
|
|
\ }
|