Github flavored markdown support

This commit is contained in:
Yan Pritzker 2012-10-09 14:07:23 -07:00
parent 90d467ab06
commit 602e995746
3 changed files with 10 additions and 0 deletions

3
.gitmodules vendored
View File

@ -352,3 +352,6 @@
[submodule "vim/bundle/bbommarito-vim-slim"]
path = vim/bundle/bbommarito-vim-slim
url = https://github.com/bbommarito/vim-slim.git
[submodule "vim/bundle/jtratner-vim-flavored-markdown"]
path = vim/bundle/jtratner-vim-flavored-markdown
url = https://github.com/jtratner/vim-flavored-markdown.git

@ -0,0 +1 @@
Subproject commit 7e5db144a6135805e9e7772b3db66fe2999e5bdf

View File

@ -0,0 +1,6 @@
" Support for github flavored markdown
" via https://github.com/jtratner/vim-flavored-markdown
augroup markdown
au!
au BufNewFile,BufRead *.md,*.markdown setlocal filetype=ghmarkdown
augroup END