Replace magit-gh-pulls package with magithub

This commit is contained in:
2018-11-16 10:52:10 +00:00
parent e800c5c153
commit b931681d73
4 changed files with 21 additions and 5 deletions

View File

@@ -93,6 +93,7 @@
(require 'siren-git-timemachine)
(require 'siren-github)
(require 'siren-magit)
(require 'siren-magithub)
;; Window management
(require 'siren-buffer-move)

View File

@@ -6,6 +6,8 @@
;;; Code:
(require 'siren-magit)
(use-package diff-hl
:demand
:hook ((dired-mode . diff-hl-dired-mode)

View File

@@ -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

View 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