blob: 946208203c57b2d7b22f26c6798a9e1b4a89035e [file] [log] [blame]
Bram Moolenaar7a329912010-05-21 12:05:36 +02001" Vim filetype plugin
2" Language: Markdown
3" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
4" Last Change: 2010 May 21
5
6if exists("b:did_ftplugin")
7 finish
8endif
9
10runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
11unlet! b:did_ftplugin
12
13setlocal comments=fb:*,fb:-,fb:+,n:> commentstring=>\ %s
14setlocal formatoptions+=tcqln
15setlocal formatlistpat=^\\s*\\d\\+\\.\\s\\+\\\|^[-*+]\\s\\+
16
17let b:undo_ftplugin .= "|setl cms< com< fo<"
18
19" vim:set sw=2: