summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--lisp/markdown.el4
2 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1fe6f06..7a4ddb3 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,8 @@ Emacs configuration file
- Find references: `M-?`
- Kill buffer: `C-x k`
+## Fonts
+- We use the `monaco` font that can be found in your repository.
## Per-language Features
diff --git a/lisp/markdown.el b/lisp/markdown.el
index 0523913..9713d36 100644
--- a/lisp/markdown.el
+++ b/lisp/markdown.el
@@ -8,7 +8,9 @@
:mode (("README\\.md\\'" . gfm-mode)
("\\.md\\'" . markdown-mode)
("\\.markdown\\'" . markdown-mode))
- :init (setq markdown-command "pandoc"))
+ :init (setq markdown-command "pandoc")
+ :config
+ (setq markdown-fontify-code-blocks-natively t))
(provide 'markdown)
;;; markdown.el ends here