Remove incsearch for now and remeove some busted python stuff

This commit is contained in:
ViViDboarder 2017-08-23 11:34:33 -07:00
parent fbf0df53f7
commit 63f04cc857
2 changed files with 1 additions and 23 deletions

View File

@ -1,22 +0,0 @@
if has('nvim')
au VimEnter,BufRead,BufNewFile *.py
\ if executable('ipython') |
\ call neoterm#repl#set('ipython') |
\ endif |
\ if executable('pytest') |
\ call neoterm#test#libs#add('pytest') |
\ endif
command! Tox :T tox<CR>
endif
let g:neomake_python_pytest_maker = {
\ 'exe': 'py.test',
\ 'errorformat': &errorformat,
\ }
let g:neomake_python_tox_maker = {
\ 'exe': 'tox',
\ 'errorformat': &errorformat,
\ }

View File

@ -26,7 +26,7 @@ call s:smart_source_rc('plugins/gitgutter')
" Searching {{
call s:smart_source_rc('plugins/ctrlp')
call s:smart_source_rc('plugins/fzf')
call s:smart_source_rc('plugins/incsearch')
" call s:smart_source_rc('plugins/incsearch')
call s:smart_source_rc('plugins/vim-grepper')
" }} Searching