mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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:
@@ -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
|
||||
|
||||
14
modules/version-control/siren-gh-notify.el
Normal file
14
modules/version-control/siren-gh-notify.el
Normal 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
|
||||
Reference in New Issue
Block a user