From 52c5e245da60e48ea837a27533c6f59f6f54cf8d Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 3 Aug 2024 14:56:48 -0400 Subject: [PATCH] Fix issue with backup-directory-alist --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index f8bbc0a..124479b 100644 --- a/init.el +++ b/init.el @@ -71,8 +71,8 @@ ;; Auto save options (setq kill-buffer-delete-auto-save-files t) -;; (setq backup-directory-alist -;; `(("." . ,(expand-file-name "backup" emacs-var-dir)))) +(setq backup-directory-alist + `(("." . ,(expand-file-name "backup" user-emacs-directory)))) (setq backup-by-copying nil) (setq backup-by-copying-when-linked t) (setq make-backup-files t)