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.
This commit is contained in:
Kiana Sheibani 2026-02-04 16:48:32 -05:00
parent 2451cba0d7
commit a1e07ed40e
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -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