diff options
-rw-r--r-- | init.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1275,6 +1275,7 @@ (use-package markdown-mode :ensure t :init (setq markdown-command '("pandoc" "--from=markdown" "--to=html5") + markdown-asymmetric-header t markdown-enable-wiki-links t markdown-wiki-link-fontify-missing t markdown-enable-math nil ;; toggle with M-x markdown-toggle-math @@ -1283,10 +1284,11 @@ markdown-hide-urls t markdown-hide-markup nil markdown-fontify-code-blocks-natively t + markdown-fontify-whole-heading-line t markdown-unordered-list-item-prefix t) :hook (markdown-mode . outline-minor-mode) :config - (dolist (u '("doc" "message")) + (dolist (u '("doc" "message" "notmuch")) (add-to-list 'markdown-uri-types u))) ;; used by markdown mode to edit code blocks |