feat(version-control): add gh-notify package

Also configure forge's dispatch menu to have a keybind for triggering
gh-notify.
This commit is contained in:
2021-12-27 19:24:04 +00:00
parent fae657a1ff
commit 90441a2590
4 changed files with 23 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
;;; Code:
(require 'siren-gh-notify)
(require 'siren-magit)
(use-package forge
@@ -14,7 +15,12 @@
:custom
(forge-database-file (expand-file-name
"forge-database.sqlite" siren-cache-dir)))
"forge-database.sqlite" siren-cache-dir))
:config
(transient-insert-suffix 'forge-dispatch '(1)
["GitHub"
("g n" "notifications" gh-notify)]))
(use-package forge-post
:straight forge

View File

@@ -0,0 +1,14 @@
;;; siren-gh-notify.el --- jimeh's Emacs Siren: gh-notify configuration
;;; Commentary:
;; Basic configuration for gh-notify.
;;; Code:
(use-package gh-notify
:defer t
:commands gh-notify)
(provide 'siren-gh-notify)
;;; siren-gh-notify.el ends here