emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit badbd2b3e0a70232726aa59ccb57eb8410611b84
parent e041ac9f0ec0f184beea9635997b3cf3e63a98db
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu,  1 Mar 2018 23:43:02 -0600

Explicitly specify whitespace-line-column.

Diffstat:
MREADME.org | 1+
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -167,6 +167,7 @@ If using emacs daemon with =systemd=, remember to add to the
 Highlight portions of line over 80 characters in =prog-mode=.
 #+BEGIN_SRC emacs-lisp
   (require 'whitespace)
+  (setq whitespace-line-column 80)
   (setq whitespace-style '(face empty tabs lines-tail trailing))
   (add-hook 'prog-mode-hook 'whitespace-mode)
 #+END_SRC