Files
.emacs.d/modules/navigation/siren-helm-open-github.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

24 lines
566 B
EmacsLisp

;;; siren-helm-open-github.el --- jimeh's Emacs Siren: helm-open-github configuration.
;;; Commentary:
;; Basic configuration for helm-open-github.
;;; Code:
(require 'siren-helm)
(use-package helm-open-github
:after (helm-global-bindings)
:general
("C-c o f" 'helm-open-github-from-file)
("C-c o c" 'helm-open-github-from-commit)
("C-c o i" 'helm-open-github-from-issues)
("C-c o p" 'helm-open-github-from-pull-requests)
:custom
(helm-open-github-commit-limit 10000))
(provide 'siren-helm-open-github)
;;; siren-helm-open-github.el ends here