summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/init.org')
-rw-r--r--.emacs.d/init.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index d8536e0..cba84e9 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -438,3 +438,13 @@
(global-set-key (kbd "C-. C-.") #'init-switch-to-other-buffer)
#+END_SRC
+
+* Fill lines to 72 columns when using woman
+
+ It's a little bit nicer to read that way, 65 characters on a line is
+ a little small.
+
+ #+BEGIN_SRC emacs-lisp
+ (stante-after woman
+ (setq woman-fill-column 72))
+ #+END_SRC