Macros now prefixed with @, instead of suffixed with !
This commit is contained in:
parent
ec694649db
commit
6c06aa0ce7
26 changed files with 265 additions and 247 deletions
|
@ -1,20 +1,20 @@
|
|||
;;; feature/version-control/config.el
|
||||
(provide '+version-control)
|
||||
|
||||
(load! +git)
|
||||
;; (load! +hg)
|
||||
(@load +git)
|
||||
;; (@load +hg)
|
||||
|
||||
(after! vc-annotate
|
||||
(set! :popup
|
||||
(@after vc-annotate
|
||||
(@set :popup
|
||||
'("*vc-diff*" :size 15 :noselect t)
|
||||
'("*vc-change-log*" :size 15 :select t)
|
||||
'(vc-annotate-mode :same t))
|
||||
|
||||
(set! :evil-state
|
||||
(@set :evil-state
|
||||
'(vc-annotate-mode normal)
|
||||
'(vc-git-log-view-mode normal))
|
||||
|
||||
(map! :map vc-annotate-mode-map
|
||||
(@map :map vc-annotate-mode-map
|
||||
:n "q" 'kill-this-buffer
|
||||
:n "d" 'vc-annotate-show-diff-revision-at-line
|
||||
:n "D" 'vc-annotate-show-changeset-diff-revision-at-line
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue