Skip to content

Instantly share code, notes, and snippets.

@WenxiJin
Last active November 22, 2016 16:56
Show Gist options
  • Save WenxiJin/820952cdb7ab7a542dd88e338ebd3fe7 to your computer and use it in GitHub Desktop.
Save WenxiJin/820952cdb7ab7a542dd88e338ebd3fe7 to your computer and use it in GitHub Desktop.
Disable whitespace-mode in java-mode
;; 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