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