2017-06-08 11:47:56 +02:00
|
|
|
;;; feature/version-control/config.el -*- lexical-binding: t; -*-
|
2017-02-03 20:29:09 -05:00
|
|
|
|
2017-04-16 20:36:15 -04:00
|
|
|
(setq vc-make-backup-files nil)
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(load! +git)
|
|
|
|
;; (load! +hg)
|
2017-02-03 20:29:09 -05:00
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(after! vc-annotate
|
|
|
|
(set! :popup
|
2017-02-08 02:22:51 -05:00
|
|
|
'("*vc-diff*" :size 15 :noselect t)
|
2017-02-21 16:05:12 -05:00
|
|
|
'("*vc-change-log*" :size 15)
|
2017-02-08 02:22:51 -05:00
|
|
|
'(vc-annotate-mode :same t))
|
2017-02-03 20:29:09 -05:00
|
|
|
|
2017-06-19 00:22:04 +02:00
|
|
|
(set! :evil-state 'vc-annotate-mode 'normal)
|
|
|
|
(set! :evil-state 'vc-git-log-view-mode 'normal))
|