summaryrefslogtreecommitdiff
path: root/vc-conf.el
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2022-11-16 21:41:39 +0800
committerJSDurand <mmemmew@gmail.com>2022-11-16 21:41:39 +0800
commit7edf313d2c8892818fc64dc125b30f967bb565ce (patch)
tree09bd428d9a6cc54046f0019397f21296da43ef23 /vc-conf.el
parent50c242f3eece8acf77bb22f3be28df7c57a889bf (diff)
vc: rudimentary pijul support
* vc-conf.el ("vc-pijul", vc-handled-backends): Add rudimentary pijul support.
Diffstat (limited to 'vc-conf.el')
-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