Don't show dots for spaces.

It interferes with many other modes. 🙁
This commit is contained in:
tastytea 2021-10-28 21:55:32 +02:00
parent be65bf20f2
commit 30d3084125
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@
:custom (whitespace-line-column nil) ; Set to fill-column.
:config (progn (delete 'newline-mark whitespace-style) ; Don't paint $ at eol.
(delete 'lines whitespace-style) ; Don't mark whole long lines.
(delete 'space-mark whitespace-style) ; Don't show dots.
(when (< emacs-major-version 27) ; Mark end of too long lines.
(add-to-list 'whitespace-style 'lines-tail))