Skip to content

Commit

Permalink
fix magit
Browse files Browse the repository at this point in the history
  • Loading branch information
jordonbiondo committed Jul 5, 2018
1 parent 051f348 commit b7beb18
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,9 @@
(add-hook
'magit-section-set-visibility-hook
(defun jordon-magit-section-visibility (section)
(and (member (magit-section-type section) '(stashes))
'hide)))
(or
(and (arrayp section) (equal (aref section 1) 'stashes) 'hide)
'show)))
(after (:magit-blame)
(setq magit-blame-heading-format "%-20a %A %s")
(setq magit-blame-time-format "%m/%d/%Y"))
Expand Down

0 comments on commit b7beb18

Please sign in to comment.