feat(version-control): add github-review package

This serves as a alternative to the code-review package. I'm adding it
mostly for testing purposes so I can compare the two and see the
pros/cons with each.
This commit is contained in:
2021-12-27 19:28:55 +00:00
parent 90441a2590
commit fd707a6e1b
5 changed files with 28 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
;;; siren-github-review.el --- jimeh's Emacs Siren: github-review configuration
;;; Commentary:
;; Basic configuration for github-review.
;;; Code:
(use-package github-review
:defer t
:custom
(github-review-fill-column 80)
(github-review-lgtm-message "lgtm :)")
(github-review-new-buffer-window-strategy 'switch-to-buffer))
(provide 'siren-github-review)
;;; siren-github-review.el ends here