7 lines
219 B
VimL
7 lines
219 B
VimL
" Neomake
|
|
let g:neomake_ruby_enabled_makers = ['rubocop']
|
|
|
|
" vim-rspec mappings
|
|
nnoremap <Leader>t :call RunCurrentSpecFile()<CR>
|
|
nnoremap <Leader>s :call RunNearestSpec()<CR>
|
|
nnoremap <Leader>l :call RunLastSpec()<CR>
|