10 lines
227 B
VimL
10 lines
227 B
VimL
" markdown filetype file
|
|
if exists("did\_load\_filetypes")
|
|
finish
|
|
endif
|
|
augroup markdown
|
|
au! BufRead,BufNewFile *.mkd setfiletype mkd
|
|
augroup END
|
|
augroup mako
|
|
au! BufRead,BufNewFile *.mak setfiletype mako
|
|
augroup END
|