mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-15 16:26:27 +00:00
20 lines
424 B
VimL
20 lines
424 B
VimL
au VimEnter,BufRead,BufNewFile *.py
|
|
\ if executable('ipython') |
|
|
\ call neoterm#repl#set('ipython') |
|
|
\ endif |
|
|
\ if executable('pytest') |
|
|
\ call neoterm#test#libs#add('pytest') |
|
|
\ endif
|
|
|
|
let g:neomake_python_pytest_maker = {
|
|
\ 'exe': 'py.test',
|
|
\ 'errorformat': &errorformat,
|
|
\ }
|
|
|
|
let g:neomake_python_tox_maker = {
|
|
\ 'exe': 'tox',
|
|
\ 'errorformat': &errorformat,
|
|
\ }
|
|
|
|
|