From 69daf50b5fbe25d947cd1fccfbb3382c0ac71f5b Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 3 Aug 2024 14:56:04 -0400 Subject: [PATCH] Fix issue with backup dir --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index a6b097d..f8bbc0a 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" emacs-var-dir)))) (setq backup-by-copying nil) (setq backup-by-copying-when-linked t) (setq make-backup-files t)