From 499c7a1c347384c113ea5a47b288acdb1b8d09c2 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 20 Apr 2026 13:03:56 -0700 Subject: [PATCH] fix(emacs): preserve org checkout directory name --- dotfiles/emacs.d/init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index eb71fc01..484748c1 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -151,7 +151,10 @@ ;; Without this, org can behave very strangely (use-package org :ensure - (org :type git :host github :repo "colonelpanic8/org-mode" + ;; Keep Org on the historical local checkout name to match the existing + ;; source directory under ~/.emacs.d/straight/repos/org. + (org :type git :host github + :repo ("colonelpanic8/org-mode" . "org") :branch "my-main-2025" :depth full :files (:defaults "lisp/*.el" ("etc/styles/" "etc/styles/*"))