aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-09 20:02:36 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-04-09 20:02:36 -0400
commit926d1b09711ddd8d8d03a2b43bcb147d2d92d4c5 (patch)
tree765611fdf4d72eea64044a53c6749bf559191583 /init.el
parentReplace yes/no prompts with y/n (diff)
downloadmmosmacs-926d1b09711ddd8d8d03a2b43bcb147d2d92d4c5.tar.gz
mmosmacs-926d1b09711ddd8d8d03a2b43bcb147d2d92d4c5.tar.bz2
mmosmacs-926d1b09711ddd8d8d03a2b43bcb147d2d92d4c5.zip
Don't create the `auto-save-list` directory
By default, Emacs creates an `auto-save-list/` directory in `.emacs.d`. Since we're not saving those auto-saves, there's no need for there to be a directory for them.
Diffstat (limited to 'init.el')
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el
index b6a1837..ba7a20e 100644
--- a/init.el
+++ b/init.el
@@ -29,7 +29,8 @@
29;; They should not exist. 29;; They should not exist.
30;; --------------------------------- 30;; ---------------------------------
31 31
32(setq auto-save-default nil) 32(setq auto-save-default nil ; don't create auto-saves
33 auto-save-list-file-prefix nil) ; don't create auto-save-list dir
33 34
34 35
35;; --------------------------------- 36;; ---------------------------------