dotfiles/emacs-lisp/whitespace_el.org
main a5a651dbb9
Large rework and cleanup
Signed-off-by: main <magic_rb@redalder.org>
2022-07-31 11:03:59 +02:00

633 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))