summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vc-conf.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/vc-conf.el b/vc-conf.el
index 63481d1..c001d30 100644
--- a/vc-conf.el
+++ b/vc-conf.el
@@ -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