diff options
author | Thomas Voss <thomas.voss@humanwave.nl> | 2024-12-01 11:36:55 +0100 |
---|---|---|
committer | Thomas Voss <thomas.voss@humanwave.nl> | 2024-12-01 11:36:55 +0100 |
commit | e276d0fb2f86944a93dc5bf57ad0389e9d5b84d8 (patch) | |
tree | f8fc2a2afcbfa7762edb1b9aac118dd437d2fd21 | |
parent | 4b0ea63198f816dd70b3a4bbfbf6b6d1ef88fb66 (diff) |
emacs: Don’t configure ‘magit-repos’ on Darwin
-rw-r--r-- | .config/emacs/modules/mm-projects.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-projects.el b/.config/emacs/modules/mm-projects.el index 058da8e..f3a8710 100644 --- a/.config/emacs/modules/mm-projects.el +++ b/.config/emacs/modules/mm-projects.el @@ -74,6 +74,7 @@ This is intended to be called interactively via (use-package magit-repos :ensure nil ; Part of ‘magit’ + :if (not mm-darwin-p) :commands (magit-list-repositories) :init (if-let ((directory (getenv "REPODIR"))) |