2015-06-10 02:42:11 +00:00
|
|
|
;;; packages.el --- Github Layer packages File for Spacemacs
|
|
|
|
;;
|
2017-01-06 03:51:13 +00:00
|
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
2015-06-10 02:42:11 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
|
|
(setq github-packages
|
|
|
|
'(
|
|
|
|
gist
|
|
|
|
github-browse-file
|
2015-10-31 01:28:58 +00:00
|
|
|
github-clone
|
2016-06-19 02:29:27 +00:00
|
|
|
github-search
|
2015-08-25 19:05:06 +00:00
|
|
|
magit-gh-pulls
|
2017-02-07 03:48:38 +00:00
|
|
|
magithub
|
2016-04-03 04:12:28 +00:00
|
|
|
;; this package does not exits, we need it to wrap
|
2016-07-05 03:00:11 +00:00
|
|
|
;; the call to spacemacs/declare-prefix.
|
2016-04-03 04:12:28 +00:00
|
|
|
(spacemacs-github :location built-in)
|
2015-06-10 02:42:11 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
(defun github/init-gist ()
|
|
|
|
(use-package gist
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
2015-11-21 10:07:14 +00:00
|
|
|
(evilified-state-evilify gist-list-mode gist-list-menu-mode-map
|
|
|
|
"f" 'gist-fetch-current
|
|
|
|
"K" 'gist-kill-current
|
|
|
|
"o" 'gist-browse-current-url)
|
2016-04-03 04:12:28 +00:00
|
|
|
(spacemacs/declare-prefix "gg" "github gist")
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys
|
2015-06-10 02:42:11 +00:00
|
|
|
"ggb" 'gist-buffer
|
|
|
|
"ggB" 'gist-buffer-private
|
|
|
|
"ggl" 'gist-list
|
|
|
|
"ggr" 'gist-region
|
|
|
|
"ggR" 'gist-region-private))))
|
|
|
|
|
|
|
|
(defun github/init-github-browse-file ()
|
|
|
|
(use-package github-browse-file
|
|
|
|
:defer t
|
2016-07-05 03:00:11 +00:00
|
|
|
:init (spacemacs/set-leader-keys "gho" 'github-browse-file)))
|
2015-06-10 02:42:11 +00:00
|
|
|
|
2015-10-31 01:28:58 +00:00
|
|
|
(defun github/init-github-clone ()
|
|
|
|
(use-package github-clone
|
|
|
|
:defer t
|
|
|
|
:init
|
2016-07-05 03:17:30 +00:00
|
|
|
(progn
|
|
|
|
(spacemacs/declare-prefix "ghc" "clone")
|
|
|
|
(spacemacs/set-leader-keys
|
|
|
|
"ghcc" 'github-clone
|
|
|
|
"ghcr" 'github-clone-add-existing-remote
|
|
|
|
"ghcf" 'github-clone-fork-remote
|
|
|
|
"ghcu" 'github-clone-add-source-remote))))
|
2015-10-31 01:28:58 +00:00
|
|
|
|
2016-06-19 02:29:27 +00:00
|
|
|
(defun github/init-github-search ()
|
|
|
|
(use-package github-search
|
|
|
|
:commands (github-search-clone-repo github-search-user-clone-repo)
|
2016-07-05 03:17:30 +00:00
|
|
|
:init (spacemacs/set-leader-keys "ghc/" 'github-search-clone-repo)))
|
2016-06-19 02:29:27 +00:00
|
|
|
|
2015-08-25 19:05:06 +00:00
|
|
|
;; magit-gh-pulls has to be loaded via a pre-config hook because the source code
|
|
|
|
;; makes assumptions about the status of the magit-mode keymaps that are
|
|
|
|
;; incompatible with the spacemacs' evilification feature.
|
|
|
|
;; To avoid errors, magit-gh-pulls must be loaded after magit, but before magit
|
|
|
|
;; is configured by spacemacs.
|
|
|
|
|
|
|
|
(defun github/init-magit-gh-pulls ()
|
|
|
|
(spacemacs|use-package-add-hook magit
|
|
|
|
:pre-config
|
|
|
|
(progn
|
|
|
|
(use-package magit-gh-pulls
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(defun spacemacs/load-gh-pulls-mode ()
|
|
|
|
"Start `magit-gh-pulls-mode' only after a manual request."
|
|
|
|
(interactive)
|
|
|
|
(magit-gh-pulls-mode)
|
2015-10-22 12:47:54 +00:00
|
|
|
(magit-gh-pulls-popup))
|
2015-08-25 19:05:06 +00:00
|
|
|
|
2015-10-22 12:47:54 +00:00
|
|
|
(define-key magit-mode-map "#" 'spacemacs/load-gh-pulls-mode))
|
2015-08-25 19:05:06 +00:00
|
|
|
:config
|
|
|
|
(spacemacs|diminish magit-gh-pulls-mode "Github-PR")))))
|
2016-04-03 04:12:28 +00:00
|
|
|
|
2017-02-07 03:48:38 +00:00
|
|
|
(defun github/init-magithub ()
|
|
|
|
(use-package magithub
|
|
|
|
:defer t
|
|
|
|
:after magit
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(magithub-feature-autoinject t)
|
|
|
|
(define-key magit-status-mode-map "@" #'magithub-dispatch-popup))))
|
|
|
|
|
2016-04-03 04:12:28 +00:00
|
|
|
(defun github/init-spacemacs-github ()
|
|
|
|
(spacemacs/declare-prefix "gh" "github"))
|