aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d
diff options
context:
space:
mode:
authorThomas Schneider <qsx@chaotikum.eu>2026-07-27 19:53:31 +0200
committerThomas Schneider <qsx@chaotikum.eu>2026-07-27 20:03:01 +0200
commit314447e116b62595bff48e83b721eb0f6008ad6e (patch)
treefdaf22184d9ed2788c1ade2b6212b3d264f4149c /dot.emacs.d
parentde79768ef8211a2120b3cce9fc57bb97cdb2c8c0 (diff)
Emacs: Disable showing trailing whitespace in Info-mode
Diffstat (limited to 'dot.emacs.d')
-rw-r--r--dot.emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 72f9df4..d927ced 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -301,6 +301,11 @@
(highlight-indentation-set-offset yaml-indent-offset)))
(add-hook 'yaml-mode-hook #'qsx-no-indent-tabs-mode))
+(defun qsx-disable-show-trailing-whitespace ()
+ (setq show-trailing-whitespace nil))
+
+(add-hook 'Info-mode-hook #'qsx-disable-show-trailing-whitespace)
+
(use-package elisp-mode
:ensure nil
:config