From 6c7c1f1b17a2424f29c10b451e5a9ce029b610a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Mon, 9 Feb 2026 02:47:00 -0700 Subject: [PATCH] fix(emacs): keep bookmarks and transient out of vc --- modules/home/users/crumb/emacs/modules/syd-autosave.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/home/users/crumb/emacs/modules/syd-autosave.el b/modules/home/users/crumb/emacs/modules/syd-autosave.el index 1c31f43..5d2163c 100644 --- a/modules/home/users/crumb/emacs/modules/syd-autosave.el +++ b/modules/home/users/crumb/emacs/modules/syd-autosave.el @@ -71,9 +71,11 @@ the unwritable tidbits." (setq-local register-alist (cl-remove-if-not #'savehist-printable register-alist))))) -(with-eval-after-load 'bookmark - ;; Stay out of my config dir! - (setq bookmark-default-file (file-name-concat syd-data-dir "bookmarks"))) +;; Stay out of my config dir! +(setq bookmark-default-file + (file-name-concat syd-data-dir "bookmarks") + transient-history-file + (file-name-concat syd-data-dir "transient/history.el")) (provide 'syd-autosave)