diff options
author | noa | 2025-02-22 16:50:39 +0800 |
---|---|---|
committer | noa | 2025-02-22 16:50:39 +0800 |
commit | 4cae29a67f15faa504a9ced73b0155624f22fab3 (patch) | |
tree | 528c60f06da4a35280ef5a04e88fbf76edad78bc /emacs | |
parent | 8dc338f618c8fcce71b6150c327a12b287550507 (diff) |
Always save bookmarks after modification
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index b4480b8..7d3902f 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -492,6 +492,10 @@ :hook (after-init . recentf-mode) :bind (("C-x C-r" . recentf))) +(use-package bookmark + :custom + (bookmark-save-flag 1)) + ;; Remember my position in files (use-package saveplace :hook (after-init . save-place-mode)) |