mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 23:49:56 +00:00
16 lines
307 B
EmacsLisp
16 lines
307 B
EmacsLisp
;;; markdown.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package markdown-mode
|
|
:ensure t
|
|
:mode ("\\.md\\'" . gfm-mode)
|
|
:config
|
|
(setq markdown-fontify-code-blocks-natively t)
|
|
(setq markdown-live-preview-mode t))
|
|
|
|
(use-package markdown-toc
|
|
:ensure t)
|
|
|
|
(provide 'lang/markdown)
|
|
|
|
;;; markdown.el ends here
|