vim-config/after/ftplugin/python.vim

17 lines
354 B
VimL
Raw Normal View History

2020-01-11 02:51:56 +00:00
" let g:ale_linters = {'python':['mypy']}
2018-10-11 06:54:47 +00:00
2020-01-11 02:51:56 +00:00
" let g:ale_python_mypy_options = '--no-warn-incomplete-stub --ignore-missing-imports'
2018-10-11 06:54:47 +00:00
2020-01-11 02:51:56 +00:00
" let g:ale_python_pycodestyle_options = '--ignore=W391'
2018-10-11 06:54:47 +00:00
let g:neoformat_enabled_python = ['autopep8']
augroup fmt
autocmd!
autocmd BufWritePre * undojoin | Neoformat
augroup END
let g:jedi#completions_enabled = 0
2020-01-11 02:51:56 +00:00