Created
September 16, 2014 12:46
-
-
Save kzar/7397117c70b3a9bbf212 to your computer and use it in GitHub Desktop.
Highlight trailing whitespace and tabs red in emacs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Highlight tabs and trailing whitespace everywhere | |
| (setq whitespace-style '(face trailing tabs)) | |
| (custom-set-faces | |
| '(whitespace-tab ((t (:background "red"))))) | |
| (global-whitespace-mode) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice!