mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
21 lines
534 B
VimL
21 lines
534 B
VimL
augroup vimrc-language-python
|
|
autocmd!
|
|
autocmd FileType python Indent 4
|
|
augroup END
|
|
|
|
let g:python_highlight_all = 1
|
|
|
|
if !g:vim_ide | finish | endif
|
|
|
|
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'],
|
|
\ },
|
|
\ })
|