Browse Source

add markdown layer

master
Brett Langdon 7 years ago
parent
commit
1c7975010f
No known key found for this signature in database GPG Key ID: E6600FB894DB3D19
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      emacs.d/layers/markdown/init.el

+ 8
- 0
emacs.d/layers/markdown/init.el View File

@ -0,0 +1,8 @@
;; Markdown-mode
;; https://github.com/jrblevin/markdown-mode
(use-package markdown-mode
:diminish gfm-mode
:mode (("README\\.md\\'" . gfm-mode)
("\\.md\\'" . gfm-mode)
("\\.markdown\\'" . gfm-mode))
:init (setq markdown-command "multimarkdown"))

Loading…
Cancel
Save