summaryrefslogtreecommitdiffstats
path: root/after/ftdetect/rspec.vim
blob: d4a0a5cc0befa77ecbe4da0bc38f791e831c9358 (plain) (blame)
1
2
3
4
5
6
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'rspec') == -1
  
autocmd BufReadPost,BufNewFile *_spec.rb set syntax=rspec
autocmd BufReadPost,BufNewFile *_spec.rb setlocal commentstring=#\ %s

endif