Last active
November 22, 2016 16:56
-
-
Save WenxiJin/820952cdb7ab7a542dd88e338ebd3fe7 to your computer and use it in GitHub Desktop.
Disable whitespace-mode in java-mode
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
;; The 'nil' configuration applies to all modes. | |
((nil . ( | |
(indent-tabs-mode . t) | |
(tab-width . 4))) | |
(java-mode . ( | |
(show-trailing-whitespace . nil) | |
(eval . (global-whitespace-mode 0)))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment