mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 04:23:51 -05:00
7 lines
191 B
VimL
7 lines
191 B
VimL
autocmd BufNewFile,BufRead *.markdown,*.md,*.mdown,*.mkd,*.mkdn
|
|
\ if &ft =~# '^\%(conf\|modula2\)$' |
|
|
\ set ft=markdown |
|
|
\ else |
|
|
\ setf markdown |
|
|
\ endif
|