diff options
-rw-r--r-- | init.el | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1826,8 +1826,7 @@ magit-save-repository-buffers 'dontask magit-section-visibility-indicator '("…" . t) magit-status-buffer-switch-function 'switch-to-buffer - magit-status-show-hashes-in-headers t) - :bind ((:map forge-topic-mode-map ("M-w" . copy-region-as-kill)))) + magit-status-show-hashes-in-headers t)) ;;;; forge (use-package forge @@ -1837,9 +1836,13 @@ (setq forge-topic-list-limit (cons 100 -1) forge-pull-notifications nil) :config - (add-hook 'magit-status-sections-hook #'forge-insert-assigned-pullreqs t) - (add-hook 'magit-status-sections-hook #'forge-insert-assigned-issues t)) + (add-hook 'magit-status-sections-hook #'forge-insert-assigned-issues t) + :bind ((:map forge-topic-mode-map ("M-w" . copy-region-as-kill)))) + +(use-package embark-vc + :after forge + :ensure t) ;;;; code reviews (use-package code-review |