diff options
author | JSDurand <mmemmew@gmail.com> | 2022-11-16 21:41:39 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-11-16 21:41:39 +0800 |
commit | 7edf313d2c8892818fc64dc125b30f967bb565ce (patch) | |
tree | 09bd428d9a6cc54046f0019397f21296da43ef23 /vc-conf.el | |
parent | 50c242f3eece8acf77bb22f3be28df7c57a889bf (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.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 |