Mark overly long lines.

This commit is contained in:
tastytea 2019-07-27 08:31:45 +02:00
parent 1a61062d78
commit a4ad1f7f7d

14
init.el
View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file. ;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-07-24T05:11:03+00:00> ;; Time-stamp: <2019-07-27T06:30:53+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
@ -560,7 +560,7 @@ With argument, do this that many times."
:after company :after company
:config :config
(delete 'newline-mark whitespace-style) ; Don't paint $ at eol. (delete 'newline-mark whitespace-style) ; Don't paint $ at eol.
(delete 'lines whitespace-style) ; Don't paint lines red if too long. ;; (delete 'lines whitespace-style) ; Don't mark overly long lines.
;; Workaround to not show dots in popup menus. ;; Workaround to not show dots in popup menus.
(defun my/whitespace-mode-enabled-p () (defun my/whitespace-mode-enabled-p ()
(symbol-value 'whitespace-mode)) (symbol-value 'whitespace-mode))
@ -593,7 +593,15 @@ With argument, do this that many times."
(conf-mode . whitespace-mode) (conf-mode . whitespace-mode)
(text-mode . whitespace-mode) (text-mode . whitespace-mode)
:custom-face :custom-face
(whitespace-space ((nil :foreground "gray18")))) (whitespace-space ((nil :foreground "gray18")))
(whitespace-line ((nil :inherit whitespace-line
:weight normal
:foreground nil
:background nil
:distant-foreground "red" ; Make dots red.
;; :box (:line-width 1 :color "dark red")
)))
)
;; Spell checking. ;; Spell checking.
(unless slow-computer (unless slow-computer