neomake is the path and the way

This commit is contained in:
Haak Saxberg 2015-12-03 09:06:43 -08:00
parent 7f49c26753
commit 972383492b
4 changed files with 8 additions and 6 deletions

View file

@ -1,6 +1,5 @@
" Syntastic
let g:syntastic_python_checkers = ['pyflakes', 'pep8', 'pep257']
let g:syntastic_python_pep8_args='--ignore=E501'
" Neomake
let g:neomake_python_enabled_makers = ['pyflakes', 'pep8']
""" Handy remaps
noremap <leader>b Oimport ipdb;ipdb.set_trace()<Esc>

View file

@ -1,5 +1,5 @@
" Syntastic
let g:syntastic_ruby_checkers = ['rubocop']
" Neomake
let g:neomake_ruby_enabled_makers = ['rubocop']
" vim-rspec mappings
nnoremap <Leader>t :call RunCurrentSpecFile()<CR>