mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
19 lines
357 B
EmacsLisp
19 lines
357 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
|
|
:config
|
|
(magithub-feature-autoinject t)
|
|
(setq magithub-clone-default-directory "~/Projects"))
|
|
|
|
(provide 'siren-magithub)
|
|
;;; siren-magithub.el ends here
|