From bb5a7b16263d86718f715a3dc5f2ebf790b4cb24 Mon Sep 17 00:00:00 2001 From: larstvei Date: Thu, 4 Jul 2024 17:19:38 +0200 Subject: [PATCH] set fill-column for markdown --- init.org | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 94accdd..28b2488 100644 --- a/init.org +++ b/init.org @@ -1192,11 +1192,16 @@ * Markdown + Markdown is pretty nice, especially when collaborating with others (as most + people don't use org), and nicer still when combined with [[https://pandoc.org/][Pandoc]]! I set + =fill-column= to 72 as it's + #+begin_src emacs-lisp ;; Emacs Major mode for Markdown-formatted files (use-package markdown-mode - :defer t) + :defer t + :hook (markdown-mode . (lambda () (setq fill-column 72)))) #+end_src