This commit is contained in:
John Doty 2019-03-28 08:21:52 -07:00
parent 89de332365
commit 6c34e9b91e
3 changed files with 46 additions and 1 deletions

View file

@ -788,6 +788,19 @@
(global-set-key (kbd "C-x g") 'magit-status)
;; =================================================================
;; Mercurial stuff
;; =================================================================
;; I remove Hg from VC-mode because it is SO SLOW.
(setq vc-handled-backends (remove 'Hg vc-handled-backends))
;; But I have monky enabled so I can use it instead.
(use-package monky
:ensure
:config
(setq monky-process-type 'cmdserver)
:bind
("C-x h" . monky-status))
;; =================================================================
;; Shell stuff
;; =================================================================