dotfiles/emacs-lisp/whitespace_el.org
main 56520667c4
Emacs changes
Signed-off-by: main <magic_rb@redalder.org>
2022-06-07 17:08:42 +02:00

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