Commit 2ccc849a0d5d

Vincent Demeester <vincent@sbr.pm>
2025-03-07 17:14:59
tools/emacs: add consult-gh-with-pr-review ๐Ÿ™ƒ
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent aee0ed0
Changed files (1)
tools
emacs
tools/emacs/config/config-vcs.el
@@ -315,11 +315,19 @@
   ;; Enable default keybindings (e.g. for commenting on issues, prs, ...)
   (consult-gh-enable-default-keybindings))
 
+(use-package consult-gh-transient
+  :after consult-gh)
 
 ;; Install `consult-gh-embark' for embark actions
 (use-package consult-gh-embark
+  :after consult-gh
   :config
   (consult-gh-embark-mode +1))
 
+(use-package consult-gh-with-pr-review
+  :after consult-gh
+  :config
+  (consult-gh-with-pr-review-mode +1))
+
 (provide 'config-vcs)
 ;;; config-vcs.el ends here