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