From 6257322d751dc36eaaf509682da164f6aef3ff90 Mon Sep 17 00:00:00 2001 From: Matthew Kosarek Date: Sat, 3 Sep 2022 12:01:26 -0400 Subject: Big upgrade to javascript/typescript to use a lanugage server --- lisp/markdown.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lisp/markdown.el (limited to 'lisp/markdown.el') diff --git a/lisp/markdown.el b/lisp/markdown.el new file mode 100644 index 0000000..97e5b92 --- /dev/null +++ b/lisp/markdown.el @@ -0,0 +1,14 @@ + +;;; Code: +(autoload 'markdown-mode "markdown-mode" + "Use the markdown-mode package to provide 'markdown-mode on-demand." + t) +(use-package markdown-mode + :commands (markdown-mode gfm-mode) + :mode (("README\\.md\\'" . gfm-mode) + ("\\.md\\'" . markdown-mode) + ("\\.markdown\\'" . markdown-mode)) + :init (setq markdown-command "multimarkdown")) + +(provide 'markdown) +;;; markdown.el ends here -- cgit v1.2.1