mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
15 lines
523 B
EmacsLisp
15 lines
523 B
EmacsLisp
;;; init-markdown.el -*- lexical-binding: t -*-
|
|
;; using multimarkdown compiler, could be found at AUR
|
|
(use-package markdown-mode
|
|
:mode ("README\\.md\\'" . gfm-mode)
|
|
:init (setq markdown-command "multimarkdown")
|
|
(setq markdown-enable-wiki-links t
|
|
markdown-italic-underscore t
|
|
markdown-asymmetric-header t
|
|
markdown-make-gfm-checkboxes-buttons t
|
|
markdown-gfm-uppercase-checkbox t
|
|
markdown-fontify-code-blocks-natively t))
|
|
(provide 'init-markdown)
|
|
|
|
;;; init-markdown.el ends here
|