dotfiles/emacs-lisp/whitespace_el.org
2023-09-16 19:54:12 +02:00

609 B

whitespace.el

#

Highlight trailing whitespace.

  (use-package whitespace
    :config
    (setq whitespace-style '(face tabs trailing))
    (face-spec-set
     'whitespace-tabs
     '((t :background "red"))
     'face-defface-spec)
    (face-spec-set
     'whitespace-trailing
     '((t :background "red"))
     'face-defface-spec)
    (global-whitespace-mode))