Emacs: fix magit error
Alan Pearce alan@alanpearce.eu
Sat, 14 Nov 2020 21:53:11 +0100
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -434,12 +434,13 @@ (use-package magit :defer 10 :commands (magit-status magit-dispatch) + :init (progn + (setq magit-define-global-key-bindings t)) :config (progn (setq magit-auto-revert-mode nil magit-section-visibility-indicator nil magit-diff-refine-hunk 'all magit-display-buffer-function #'display-buffer magit-completing-read-function #'ivy-completing-read) - (global-magit-file-mode +1) (remove-hook 'magit-section-highlight-hook 'magit-section-highlight) (remove-hook 'magit-section-highlight-hook 'magit-section-highlight-selection) (remove-hook 'magit-section-highlight-hook 'magit-diff-highlight)))