Improve Markdown integration

* Default Vim configuration detects .md files as modula
* Replaces default config so that .md is detected as markdown

Resolves #71.
This commit is contained in:
Joe Ferris 2012-11-09 14:35:28 -05:00
parent 9b3e09e962
commit 84ce5cc1ba

2
vimrc
View file

@ -103,3 +103,5 @@ nnoremap <Down> :echoe "Use j"<CR>
" Treat <li> and <p> tags like the block tags they are
let g:html_indent_tags = 'li\|p'
" Markdown files end in .md
au BufRead,BufNewFile *.md set filetype=markdown