mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-12 15:36:53 -05:00
BREAKING CHANGE: This commit removes the magit-gitflow package because: - It is not considered a "universal" default. I.e. The majority of git users do not know of or use it, much less need it. - The elisp configuration for it is trivial. It doesn't warrant Doom-specific support for it and is trivial enough for end-users to deploy themselves with minimal difficulty. Close: #7015
12 lines
503 B
EmacsLisp
12 lines
503 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/magit/packages.el
|
|
|
|
(when (package! magit :pin "30b0debaaadadec6103a8d7eab92322fd9d30a15")
|
|
(package! compat :pin "01fdf316a44eac9a7f6ab7e0983427a702ffd04d")
|
|
(when (modulep! +forge)
|
|
(package! forge :pin "ce212f8f95838889c51d0327eb8c3979bec6665c")
|
|
(package! code-review
|
|
:recipe (:files ("graphql" "code-review*.el"))
|
|
:pin "95b36ec8e7935f96b2f3c6c9086d49cf4a72cbff"))
|
|
(package! magit-todos :pin "c5030cc27c7c1a48db52b0134bf2648a59a43176"))
|