From a1e07ed40e5fc6fa5cee238f2a155d5438a316d7 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 4 Feb 2026 16:48:32 -0500 Subject: [PATCH] tweak: only set `fill-column` to 90 in Org 80 columns is a perfectly fine maximum width in most modes, I only really want extra for Org. --- config.org | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config.org b/config.org index 6f22995..7a504f1 100644 --- a/config.org +++ b/config.org @@ -1285,7 +1285,7 @@ I have rather specific tastes when it comes to line wrapping. I like soft line w (setq +word-wrap-fill-style 'soft ; Soft line wrapping evil-respect-visual-line-mode t ; Respect visual line mode ) -(setq-default fill-column 90) ; More space before wrap +(setq-default fill-column 80) ; More space before wrap #+end_src *** Hacks @@ -2875,8 +2875,11 @@ Unfortunately, with that power comes a *lot* of configuration work up-front. It ("STRT" . +org-todo-active) ("WAIT" . +org-todo-onhold) ("HOLD" . +org-todo-onhold) - ("KILL" . +org-todo-cancel)) - )) + ("KILL" . +org-todo-cancel))) + (set-face-foreground '+org-todo-project (doom-color 'base6))) + +(add-hook! org-mode + (setq fill-column 90)) #+end_src *** Tags