-
Notifications
You must be signed in to change notification settings - Fork 0
/
hc-git.el
40 lines (32 loc) · 906 Bytes
/
hc-git.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
;;; hc-git.el --- git -*- lexical-binding: t; -*-
;;; Commentary:
;; Version Control
;; - http://www.gnu.org/software/emacs/manual/html_node/emacs/Version-Control.html#Version-Control
;; - http://emacswiki.org/emacs/VersionControl
;; GIT
;; - http://magit.github.com/magit/magit.html
;; - http://www.emacswiki.org/emacs/Magit
;; - https://github.com/pidu/git-timemachine
;; Magit and Ediff
;; - http://dachary.org/?p=2893
;;; Code:
(eval-when-compile (require 'use-package))
(use-package magit
:config
(progn
(setq git-commit-summary-max-length 80)
(setq git-commit-fill-column 80)
)
)
;; https://github.com/syohex/emacs-git-gutter
(use-package git-gutter
:config
(progn
(global-git-gutter-mode t)
;; HC: enabling this breaks git-gutter
;; to use git-gutter and linum-mode
;;(git-gutter:linum-setup)
)
)
(provide 'hc-git)
;;; hc-git.el ends here