summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2024-02-11 12:01:49 +0000
committerGrégoire Duchêne <gduchene@awhk.org>2024-02-11 12:01:49 +0000
commitd13df53ace537f0cb2afafa787bfde06e15f1020 (patch)
tree3525b70a7fcf8818d23c5977afd1e9bb97d46ee6
parentf4a158aafca00946f606d45d10872c1c5137a969 (diff)
emacs: Store bookmarks file in the data directory
-rw-r--r--emacs/init.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 02b17e0..d270371 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -3,6 +3,7 @@
(setopt abbrev-file-name (my/cache-file-name "abbrev_defs")
auto-save-list-file-prefix (my/cache-file-name "auto-save-list/")
backup-directory-alist `(("." . ,(my/cache-file-name "backups")))
+ bookmark-default-file (my/data-file-name "bookmarks")
custom-file (my/cache-file-name "custom.el")
delete-by-moving-to-trash t
transient-history-file (my/cache-file-name "transient/history.el"))