use vim-plug instead of vundle for plugin management

This commit is contained in:
Haak Saxberg 2015-12-03 13:13:32 -08:00 committed by Haak Saxberg
parent 972383492b
commit d2a81fbd6b
6 changed files with 2118 additions and 45 deletions

File diff suppressed because it is too large Load diff

@ -1 +0,0 @@
Subproject commit 5f70ae6025e951f0154e3940d123138adffa4c88

View file

@ -1,5 +1,8 @@
" Neomake
let g:neomake_ruby_enabled_makers = ['rubocop']
let g:neomake_ruby_rubocop_maker = {
\ 'args': ['--except', 'Style/TrailingComma,Style/Documentation,Metrics/ClassLength,Metrics/ModuleLength,Metrics/MethodLength,Style/SignalException'],
\}
" vim-rspec mappings
nnoremap <Leader>t :call RunCurrentSpecFile()<CR>