summaryrefslogtreecommitdiffhomepage
path: root/Ruby/.vimrc
blob: 9573351db03348c0292f7622687efa062ad63703 (plain)
1
2
3
4
5
6
7
8
" press F5 to execute the project code
map <f5> :AsyncRun -cwd=<root> ruby run.rb<CR>

" Identify .mab files as Ruby
augroup syntax_mab_files
	autocmd!
	autocmd VimEnter,BufNewFile,BufEnter *.mab set syntax=ruby
augroup end