From 8bd1250ab4fcd79f22c8769df3378dd3254fb2b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Thu, 2 Apr 2026 08:58:41 -0600 Subject: [PATCH] fix(emacs): prevent garbage from entering vc --- modules/home/users/msyds/emacs/init.el | 4 +++- modules/home/users/msyds/emacs/lisp/syd/bookmark.el | 10 ++++++++++ modules/home/users/msyds/emacs/lisp/syd/transient.el | 10 ++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 modules/home/users/msyds/emacs/lisp/syd/bookmark.el create mode 100644 modules/home/users/msyds/emacs/lisp/syd/transient.el diff --git a/modules/home/users/msyds/emacs/init.el b/modules/home/users/msyds/emacs/init.el index a8f748a..406f05c 100755 --- a/modules/home/users/msyds/emacs/init.el +++ b/modules/home/users/msyds/emacs/init.el @@ -67,4 +67,6 @@ syd/grammatical-framework syd/tabs syd/lsp - syd/custom)) + syd/custom + syd/transient + syd/bookmark)) diff --git a/modules/home/users/msyds/emacs/lisp/syd/bookmark.el b/modules/home/users/msyds/emacs/lisp/syd/bookmark.el new file mode 100644 index 0000000..23dc45e --- /dev/null +++ b/modules/home/users/msyds/emacs/lisp/syd/bookmark.el @@ -0,0 +1,10 @@ +;;; -*- lexical-binding: t; -*- + +(require 'syd/base) + +(use-package bookmark + :straight nil + :custom ((bookmark-default-file + (file-name-concat syd-data-dir "bookmarks")))) + +(provide 'syd/bookmark) diff --git a/modules/home/users/msyds/emacs/lisp/syd/transient.el b/modules/home/users/msyds/emacs/lisp/syd/transient.el new file mode 100644 index 0000000..40631fd --- /dev/null +++ b/modules/home/users/msyds/emacs/lisp/syd/transient.el @@ -0,0 +1,10 @@ +;;; -*- lexical-binding: t; -*- + +(require 'syd/base) + +(use-package transient + :straight nil + :custom ((transient-history-file + (file-name-concat syd-data-dir "transient/history.el")))) + +(provide 'syd/transient)