summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-11-17 11:12:25 +0100
committerGravatar Tom Willemse2013-11-17 11:12:25 +0100
commitcf563ae04e9917e9c3212005318c10303d741340 (patch)
tree6138c0f6c184e7217ee01abed69990c9b2277089 /.emacs.d/init.org
parent7d877d422a0878c7669720fc332034580cb62722 (diff)
downloademacs-cf563ae04e9917e9c3212005318c10303d741340.tar.gz
emacs-cf563ae04e9917e9c3212005318c10303d741340.zip
Fill lines to 72 columns in woman
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