501-git: reorganize use-packages

* magit custom adaptions
* new defun 'my/magit-default.options'
* enforce package ''magithub'

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-06-24 01:36:03 +02:00
parent 2aef9f9983
commit eccf4d5b64

View File

@@ -17,13 +17,15 @@
("<C-tab>" . magit-section-cycle)
:map magit-branch-section-map
("RET" . magit-checkout))
:custom
(magit-use-overlays nil)
(magit-section-visibility-indicator nil)
(magit-completing-read-function 'ivy-completing-read)
(magit-push-always-verify nil)
(magit-repository-directories '("~/src/"))
(bind-key "v" 'visit-pull-request-url magit-mode-map)
:config
(add-hook 'after-save-hook 'magit-after-save-refresh-status)
(setq magit-use-overlays nil
magit-section-visibility-indicator nil
magit-completing-read-function 'ivy-completing-read
magit-push-always-verify nil
magit-repository-directories '("~/src/"))
(use-package git-timemachine
:bind (("C-x v t" . git-timemachine)))
(use-package git-link
@@ -42,27 +44,34 @@
(magit-get-remote)
"url"))
(cdr (magit-get-remote-branch)))))
(bind-key "v" 'visit-pull-request-url magit-mode-map)
(defvar my/magit-default-options
`(
(pulling "--rebase")
))
)
;; Do Not Show Recent Commits in status window
;; https://github.com/magit/magit/issues/3230#issuecomment-339900039
(magit-add-section-hook 'magit-status-sections-hook
'magit-insert-unpushed-to-upstream
'magit-insert-unpushed-to-upstream-or-recent
'replace))
'replace)
;; load forge to handle github, gitlab, etc
;;(require 'forge)
(use-package forge
:ensure t
:after magit)
(defvar my/magit-default-options
`(
(pulling "--rebase")
))
(use-package magithub
:ensure t
:after magit
:config
(magithub-feature-autoinject t)
(setq magithub-clone-default-directory "~/github"))
;;(advice-add 'magit-key-mode :filter-args #'magit-key-mode--add-default-options)
(provide '501-git)
;; End:
;;; 501-git.el ends here