mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
22 lines
364 B
EmacsLisp
22 lines
364 B
EmacsLisp
;;; siren-magithub.el --- jimeh's Emacs Siren: magithub configuration
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for magithub.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-magit)
|
|
|
|
(use-package magithub
|
|
:after magit
|
|
|
|
:custom
|
|
(magithub-clone-default-directory "~/Projects")
|
|
|
|
:config
|
|
(magithub-feature-autoinject t))
|
|
|
|
(provide 'siren-magithub)
|
|
;;; siren-magithub.el ends here
|