Fixed fill-column setting.

This commit is contained in:
tastytea 2019-08-04 09:51:52 +02:00
parent d3f580df62
commit 1d216d3efb

View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-08-03T10:37:32+00:00>
;; Time-stamp: <2019-08-04T07:51:35+00:00>
;;; Commentary:
;; I am using this file with Emacs 26, but most of it will probably work with
@ -104,7 +104,7 @@
(initial-major-mode 'markdown-mode) ; and select mode.
(require-final-newline t) ; Always add newline at end of file.
(recentf-max-saved-items 40) ; Keep this number of buffers in history.
(fill-column . 80) ; Documents are 80 chars wide by default.
(fill-column 80) ; Documents are 80 chars wide by default.
:config
(defalias 'yes-or-no-p 'y-or-n-p) ; Just type y/n instead of yes/no.