mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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.
18 lines
407 B
EmacsLisp
18 lines
407 B
EmacsLisp
;;; 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
|