Add auto-save-file-name-transforms and create the auto-save-list-file-prefix dir

This commit is contained in:
James Cherti
2026-03-13 12:17:48 -04:00
parent e5eaabadb7
commit 683803e8ad
2 changed files with 17 additions and 1 deletions

View File

@@ -425,7 +425,10 @@ To enable autosave, add the following to `~/.emacs.d/post-init.el`:
;; `recover-session' to restore unsaved changes.
(setq auto-save-default t)
;; Trigger an auto-save after 300 keystrokes
(setq auto-save-interval 300)
;; Trigger an auto-save 30 seconds of idle time.
(setq auto-save-timeout 30)
```