Skip to content

Instantly share code, notes, and snippets.

@wagjo
Created January 18, 2016 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wagjo/8436799909af2d77df5e to your computer and use it in GitHub Desktop.
Save wagjo/8436799909af2d77df5e to your computer and use it in GitHub Desktop.
Automatic whitespace cleanup upon save in Emacs
(add-hook 'before-save-hook
(lambda ()
(whitespace-cleanup)
(delete-trailing-whitespace)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment