magit-revision-insert-related-refs = nil

This commit is contained in:
Henrik Lissner 2020-08-14 16:51:30 -04:00
parent e49b4a8123
commit 77f9cc53ae
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -22,8 +22,11 @@ For example, diffs and log buffers. Accepts `left', `right', `up', and `down'.")
magit-diff-refine-hunk t ; show granular diffs in selected hunk
;; Don't autosave repo buffers. This is too magical, and saving can
;; trigger a bunch of unwanted side-effects, like save hooks and
;; formatters. Trust us to know what we're doing.
magit-save-repository-buffers nil)
;; formatters. Trust the user to know what they're doing.
magit-save-repository-buffers nil
;; Don't display parent/related refs in commit buffers; they are rarely
;; helpful and only add to runtime costs.
magit-revision-insert-related-refs nil)
(add-hook 'magit-process-mode-hook #'goto-address-mode)
(defadvice! +magit-revert-repo-buffers-deferred-a (&rest _)