Fixed comment.

This commit is contained in:
tastytea 2019-07-11 02:06:46 +02:00
parent dbe7172c1e
commit a92f7394be

View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file. ;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-07-10T23:41:20+00:00> ;; Time-stamp: <2019-07-10T23:47:11+00:00>
;;; Commentary: ;;; Commentary:
;; I am using this file with Emacs 26, but most of it will probably work with ;; I am using this file with Emacs 26, but most of it will probably work with
@ -95,7 +95,7 @@
;; Paste text where the cursor is, not where the mouse is. ;; Paste text where the cursor is, not where the mouse is.
(mouse-yank-at-point t) (mouse-yank-at-point t)
(initial-scratch-message nil) ; Make scratch buffer empty, (initial-scratch-message nil) ; Make scratch buffer empty,
(initial-major-mode 'markdown-mode) ; and select text-mode. (initial-major-mode 'markdown-mode) ; and select mode.
(require-final-newline t) ; Always add newline at end of file. (require-final-newline t) ; Always add newline at end of file.
:config :config
@ -154,7 +154,6 @@
:hook :hook
(prog-mode . my/set-fill-column-80) (prog-mode . my/set-fill-column-80)
(conf-mode . my/set-fill-column-80) (conf-mode . my/set-fill-column-80)
(html-mode . my/set-fill-column-100)
(text-mode . auto-fill-mode)) ; Enable word-wrapping at fill-column. (text-mode . auto-fill-mode)) ; Enable word-wrapping at fill-column.
;; Save cursor position. ;; Save cursor position.