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:
parent
2451cba0d7
commit
a1e07ed40e
1 changed files with 6 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue