From cb7006d21a96ce707fe43a7d19d8f1f0ae6eddb5 Mon Sep 17 00:00:00 2001 From: "jaccarmac@gmail.com" Date: Tue, 23 Dec 2014 21:43:07 +0000 Subject: [PATCH] Add definition of `fill-column`. FossilOrigin-Name: 3689e70274f4f6447f3dd2cc7b6d47d6a586d63f --- dot-emacs-dot-d.org | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dot-emacs-dot-d.org b/dot-emacs-dot-d.org index c81693b..a39e811 100644 --- a/dot-emacs-dot-d.org +++ b/dot-emacs-dot-d.org @@ -63,6 +63,15 @@ Now, for some code. (quse-package better-defaults) #+END_SRC + On top of the sensible settings in =better-defaults=, I like to set + =fill-column= to a sane value that doesn't depend on Emacs' frame + size. + + #+NAME: fill-column + #+BEGIN_SRC emacs-lisp + (setq-default fill-column 79) + #+END_SRC + Exposing Emacs' multi-branch undo and redo feature graphically is fantastically useful. Tony Cubitt's =undo-tree-mode= does just that. @@ -245,6 +254,8 @@ Now, for some code. <> + <> + <> <>