+ SPC and SPC m as leader/localleader (spacemacs-ey) + Move all custom keybindings to private +bindings.el file + Redesign+rearrange keybindings
16 lines
336 B
EmacsLisp
16 lines
336 B
EmacsLisp
;;; feature/version-control/config.el
|
|
|
|
(setq vc-make-backup-files nil)
|
|
|
|
(load! +git)
|
|
;; (load! +hg)
|
|
|
|
(after! vc-annotate
|
|
(set! :popup
|
|
'("*vc-diff*" :size 15 :noselect t)
|
|
'("*vc-change-log*" :size 15)
|
|
'(vc-annotate-mode :same t))
|
|
|
|
(set! :evil-state
|
|
'(vc-annotate-mode . normal)
|
|
'(vc-git-log-view-mode . normal)))
|