Skip to content

Commit

Permalink
fix(transient): install a newer version at the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Dec 26, 2024
1 parent 2e777e0 commit 2540cbb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 6 additions & 0 deletions core/me-bootstrap.el
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@
'(which-key editorconfig)))))
(straight-use-package `(,pkg :source gnu-elpa-mirror)))

;; HACK+FIX: We need to install a new version, otherwise, `magit' and `forge'
;; can cause problems. This needs to be done early before the builtin
;; `transient' gets loaded.
(use-package transient
:straight t)

(use-package compat
:straight (compat :source gnu-elpa-mirror)
:when (< emacs-major-version 30)
Expand Down
6 changes: 0 additions & 6 deletions modules/me-vc.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@

;;; Code:

;; A library for defining keyboard-driven menus
(use-package transient
;; We need to install a new version, otherwise, `forge' will not work
:straight t)


;; It's Magit! A Git Porcelain inside Emacs.
(use-package magit
:straight t
Expand Down

0 comments on commit 2540cbb

Please sign in to comment.