spacemacs/contrib/git/config.el

12 lines
471 B
EmacsLisp
Raw Normal View History

(defvar git-enable-github-support nil
"If non nil the Github packages and extensions are enabled.")
2014-12-23 04:06:13 +00:00
(setq git/key-binding-prefixes '(("gh" . "gutter-hunks/highlight")))
(setq magit-completing-read-function 'magit-ido-completing-read)
2014-12-23 04:06:13 +00:00
(when git-enable-github-support
(push (cons "gf" "file") git/key-binding-prefixes)
(push (cons "gg" "gist") git/key-binding-prefixes))
(mapc (lambda (x) (spacemacs/declare-prefix (car x) (cdr x)))
git/key-binding-prefixes)