We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acafe09 commit 1f18b57Copy full SHA for 1f18b57
init.el
@@ -96,12 +96,17 @@
96
(setq gc-cons-threshold 100000000
97
max-lisp-eval-depth 2000)
98
99
-;; Move backups and auto-saves to ~/.emacs.d/.local/.saves.
+;; Move backups and auto-saves
100
(setq create-lockfiles nil
101
- backup-directory-alist `(("." . ,(expand-file-name ".local/.saves/" user-emacs-directory)))
+ backup-directory-alist `(("." . ,(expand-file-name ".local/backups/" user-emacs-directory)))
102
backup-by-copying t
103
delete-old-versions t
104
- kept-new-versions 6)
+ kept-new-versions 6
105
+
106
+ auto-save-list-file-name (expand-file-name ".local/auto-saves-list" user-emacs-directory))
107
108
+;; Enable autosaves
109
+(auto-save-mode 1)
110
111
;; Remember recent files
112
(use-package recentf
0 commit comments