From 246730a80c5cc6fa3774436e1d6e87f37cdf6acd Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 23 Aug 2016 15:56:30 -0700 Subject: [PATCH] Set default fill-column to 80 --- dotfiles/emacs.d/README.org | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 0d9ca87a..fb8d0010 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -987,9 +987,14 @@ programming mode. (setq split-width-threshold 160) #+END_SRC ** Fill Setup +Get rid of nags about requiring setences to end with two spaces. #+BEGIN_SRC emacs-lisp (setq sentence-end-double-space nil) #+END_SRC +Set the default fill-column +#+BEGIN_SRC emacs-lisp +(setq-default fill-column 80) +#+END_SRC ** Encoding UTF-8 everywhere #+BEGIN_SRC emacs-lisp @@ -1044,8 +1049,6 @@ whenever there is an error. ;; Make buffer names unique. (setq uniquify-buffer-name-style 'forward) -(setq fill-column 80) - ;; Don't disable commands... (setq disabled-command-function nil)