Skip to content

Instantly share code, notes, and snippets.

@Superbil
Last active December 17, 2015 06:29
Show Gist options
  • Save Superbil/5565949 to your computer and use it in GitHub Desktop.
Save Superbil/5565949 to your computer and use it in GitHub Desktop.
let auto save and backup to temporary directory
;; http://emacswiki.org/emacs/AutoSave
(setq backup-directory-alist
`((".*" . ,temporary-file-directory)))
(setq auto-save-file-name-transforms
`((".*" ,temporary-file-directory t)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment