mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Replace magit-gh-pulls package with magithub
This commit is contained in:
@@ -93,6 +93,7 @@
|
||||
(require 'siren-git-timemachine)
|
||||
(require 'siren-github)
|
||||
(require 'siren-magit)
|
||||
(require 'siren-magithub)
|
||||
|
||||
;; Window management
|
||||
(require 'siren-buffer-move)
|
||||
|
||||
@@ -6,6 +6,8 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'siren-magit)
|
||||
|
||||
(use-package diff-hl
|
||||
:demand
|
||||
:hook ((dired-mode . diff-hl-dired-mode)
|
||||
|
||||
@@ -47,10 +47,5 @@
|
||||
("~/.dotfiles" . 2))
|
||||
magit-display-buffer-function 'magit-display-buffer-same-window-except-diff-v1))
|
||||
|
||||
(use-package magit-gh-pulls
|
||||
:hook (magit-mode . turn-on-magit-gh-pulls)
|
||||
:config
|
||||
(setq gh-use-local-git-config t))
|
||||
|
||||
(provide 'siren-magit)
|
||||
;;; siren-magit.el ends here
|
||||
|
||||
18
modules/version-control/siren-magithub.el
Normal file
18
modules/version-control/siren-magithub.el
Normal file
@@ -0,0 +1,18 @@
|
||||
;;; siren-magithub.el --- jimeh's Emacs Siren: magithub configuration
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Basic configuration for magithub.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(require 'siren-magit)
|
||||
|
||||
(use-package magithub
|
||||
:after magit
|
||||
:config
|
||||
(magithub-feature-autoinject t)
|
||||
(setq magithub-clone-default-directory "~/Projects"))
|
||||
|
||||
(provide 'siren-magithub)
|
||||
;;; siren-magithub.el ends here
|
||||
Reference in New Issue
Block a user