mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-15 11:16:29 +00:00
14 lines
344 B
VimL
14 lines
344 B
VimL
Plug 'neomake/neomake'
|
|
nnoremap <F5> :Neomake<CR>
|
|
command! TagsUpdate NeomakeSh ctags -R .
|
|
|
|
let g:neomake_python_enabled_makers = ['flake8']
|
|
let g:neomake_python_pytest_maker = {
|
|
\ 'exe': 'py.test',
|
|
\ 'errorformat': &errorformat,
|
|
\ }
|
|
let g:neomake_python_tox_maker = {
|
|
\ 'exe': 'tox',
|
|
\ 'errorformat': &errorformat,
|
|
\ }
|