mirror of
https://github.com/gryf/.vim.git
synced 2025-12-18 03:50:30 +01:00
10 lines
150 B
VimL
10 lines
150 B
VimL
" markdown filetype file
|
|
if exists("did\_load\_filetypes")
|
|
finish
|
|
endif
|
|
|
|
augroup markdown
|
|
au! BufRead,BufNewFile *.mkd setfiletype mkd
|
|
augroup END
|
|
|