From 89f8a46f76054efc5bbdb1934006c96be990a5e8 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 6 Jan 2014 16:12:59 -0800 Subject: [PATCH] Use text syntax mode for md, markdown. --- filetype.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/filetype.vim b/filetype.vim index bf10eea..284210b 100644 --- a/filetype.vim +++ b/filetype.vim @@ -6,8 +6,10 @@ augroup filetypedetect au! BufRead,BufNewFile *.leg setfiletype c au! BufRead,BufNewFile *.nim setfiletype nimrod au! BufRead,BufNewFile {TODO,todo,TodoList} setfiletype todo - au! BufRead,BufNewFile *.txt setfiletype text + au! BufRead,BufNewFile *.txt setfiletype text + au! BufRead,BufNewFile *.markdown setfiletype text + au! BufRead,BufNewFile *.md setfiletype text au! BufRead,BufNewFile *.st setfiletype stringtemplate augroup END - + runtime! ftdetect/*.vim