Skip to content

Instantly share code, notes, and snippets.

@khapota
Created February 22, 2021 03:13
Show Gist options
  • Save khapota/3809bf4059bd98b018606254703253ea to your computer and use it in GitHub Desktop.
Save khapota/3809bf4059bd98b018606254703253ea to your computer and use it in GitHub Desktop.
Change Emacs backup and autosave to tmp
;; store all backup and autosave files in the tmp dir
(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