Emacs: Add truncate-lines in addition to truncate-line. 🤷

This commit is contained in:
tastytea 2020-01-27 02:00:35 +01:00
parent 7031dd28b5
commit e088c867d1

View File

@ -1,6 +1,6 @@
;;; common.el --- Common settings for text files. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-27T01:53:16+0100>
;; Time-stamp: <2020-01-27T02:00:27+0100>
;;; Commentary:
@ -16,6 +16,7 @@
(fill-column 80) ; Documents are 80 chars wide by default.
(word-wrap t) ; Wrap at word for continuation lines.
(truncate-line t) ; No continuation lines.
(truncate-lines t) ; The same?
:hook
(text-mode . auto-fill-mode) ; Enable word-wrapping at fill-column.