mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
13 lines
477 B
VimL
13 lines
477 B
VimL
" Define python-specific neomake config
|
|
" Neomake is python syntax checker, in this case, we use flake8
|
|
" Requires: pip install flake8
|
|
let g:neomake_python_enabled_makers = ['flake8']
|
|
let g:neomake_python_flake8_maker = {'args': ['--ignore=E501', '--format=default']}
|
|
call neomake#configure#automake('nrwi', 500)
|
|
|
|
" Enable deoplete on startup
|
|
" Deoplete provides autosuggestions from python standard library
|
|
" Requires: pip install pynvim
|
|
let g:deoplete#enable_at_startup = 1
|
|
|