Skip to content

Instantly share code, notes, and snippets.

@kzar
Created September 16, 2014 12:46
Show Gist options
  • Select an option

  • Save kzar/7397117c70b3a9bbf212 to your computer and use it in GitHub Desktop.

Select an option

Save kzar/7397117c70b3a9bbf212 to your computer and use it in GitHub Desktop.
Highlight trailing whitespace and tabs red in emacs
; Highlight tabs and trailing whitespace everywhere
(setq whitespace-style '(face trailing tabs))
(custom-set-faces
'(whitespace-tab ((t (:background "red")))))
(global-whitespace-mode)
@Sword-Smith

Copy link
Copy Markdown

nice!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment