diff options
-rw-r--r-- | vc-conf.el | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -26,8 +26,14 @@ (require 'vc) +(use-package "vc-pijul" 'vc-pijul) + (define-key vc-dir-mode-map (vector ?F) #'vc-pull) (define-key vc-prefix-map (vector ?-) #'vc-revision-other-window) +;;; Backends that I care about + +(setq vc-handled-backends (list 'pijul 'git)) + (provide 'vc-conf) ;;; vc-conf.el ends here |