summary refs log tree commit diff
path: root/emacs.d/modes/lang-markdown.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/modes/lang-markdown.el10
1 files changed, 0 insertions, 10 deletions
diff --git a/emacs.d/modes/lang-markdown.el b/emacs.d/modes/lang-markdown.el
deleted file mode 100644
index f4f544d..0000000
--- a/emacs.d/modes/lang-markdown.el
+++ /dev/null
@@ -1,10 +0,0 @@
-(use-package markdown-mode
-  :ensure t
-  :mode ("\\.\\(m\\(ark\\)?down\\|md\\)$" . markdown-mode)
-  :config
-  (progn
-    (let ((preferred-markdown-impl "peg-markdown"))
-      (when (executable-find preferred-markdown-impl)
-        (setq markdown-command preferred-markdown-impl)))))
-
-(provide 'lang-markdown)