Last active
December 17, 2015 06:29
-
-
Save Superbil/5565949 to your computer and use it in GitHub Desktop.
let auto save and backup to temporary directory
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
;; 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