From 30d3084125e6ec4a26609681e9f5206b332ad63e Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 28 Oct 2021 21:55:32 +0200 Subject: [PATCH] Don't show dots for spaces. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It interferes with many other modes. 🙁 --- init.d/basics/appearance.el | 1 + 1 file changed, 1 insertion(+) diff --git a/init.d/basics/appearance.el b/init.d/basics/appearance.el index afe4ac3..341a3bf 100644 --- a/init.d/basics/appearance.el +++ b/init.d/basics/appearance.el @@ -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))