Add markdown support

This commit is contained in:
Adam Stankiewicz
2013-09-12 17:24:09 +02:00
parent 4c2025af5c
commit 5674965628
4 changed files with 161 additions and 0 deletions

6
ftdetect/markdown.vim Normal file
View File

@@ -0,0 +1,6 @@
autocmd BufNewFile,BufRead *.markdown,*.md,*.mdown,*.mkd,*.mkdn
\ if &ft =~# '^\%(conf\|modula2\)$' |
\ set ft=markdown |
\ else |
\ setf markdown |
\ endif