You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
330 B

  1. ;; see also
  2. ;; https://jblevins.org/projects/markdown-mode/
  3. (use-package markdown-mode
  4. :ensure t
  5. :commands (markdown-mode gfm-mode)
  6. :mode (("README\\.md\\'" . gfm-mode)
  7. ("\\.md\\'" . markdown-mode)
  8. ("\\.markdown\\'" . markdown-mode))
  9. :init (setq markdown-command "multimarkdown"))
  10. (provide 'plugin-markdown)