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)