Set default fill-column to 80

This commit is contained in:
Ivan Malison 2016-08-23 15:56:30 -07:00
parent 4e2b9e0041
commit 246730a80c
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -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)