summary refs log tree commit diff
path: root/emacs.d/modes/lang-markdown.el
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-03 13:25:44 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-03 13:25:44 -0700
commit1346ffa38cd554571171a1b4fb20b3ad7faf2c3d (patch)
tree6ef7fba9fdb1aeca973747153d8a2528167d3fe6 /emacs.d/modes/lang-markdown.el
parent[bash] clean up a little bit the configuration (diff)
downloademacs.d-1346ffa38cd554571171a1b4fb20b3ad7faf2c3d.tar.gz
[emacs] move everything back to one file for now.
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)