From 98b23e18a8d21440b98325de9b5050dc7eb59fcf Mon Sep 17 00:00:00 2001 From: nirenjan Date: Wed, 31 Jul 2013 23:26:41 -0700 Subject: [PATCH] Add markdown files to ftplugin and ftdetect dirs --- ftdetect/markdown.vim | 6 ++++++ ftplugin/markdown.vim | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 ftdetect/markdown.vim create mode 100644 ftplugin/markdown.vim diff --git a/ftdetect/markdown.vim b/ftdetect/markdown.vim new file mode 100644 index 0000000..6eda005 --- /dev/null +++ b/ftdetect/markdown.vim @@ -0,0 +1,6 @@ +" File: markdown.vim +" Author: Nirenjan Krishnan +" Description: Syntax detection for Markdown files +" Last Modified: July 31, 2013 + +autocmd BufNewFile,BufRead *.md setlocal filetype=markdown diff --git a/ftplugin/markdown.vim b/ftplugin/markdown.vim new file mode 100644 index 0000000..9b7d278 --- /dev/null +++ b/ftplugin/markdown.vim @@ -0,0 +1,6 @@ +" File: markdown.vim +" Author: Nirenjan Krishnan +" Description: Markdown editing settings +" Last Modified: July 31, 2013 + +setlocal textwidth=80