diff options
author | mattkae <mattkae@protonmail.com> | 2023-03-04 15:42:17 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2023-03-04 15:42:17 -0500 |
commit | 5a0e0d0bb30e5ace9775a3625464f9b62f946880 (patch) | |
tree | 9ad5b1afb3b0b10eb286f4b3ae765d8710f2c07a | |
parent | 5cd6542a83a58a49f8d31e6a40ef4785ce059d47 (diff) |
Improved markdown mode to include highlights
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | lisp/markdown.el | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -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 |