diff options
author | Amin Bandali <bandali@gnu.org> | 2018-11-22 10:40:22 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-11-22 10:40:22 -0500 |
commit | d7e1ea831d7803a040135edf00d224ba6e80f613 (patch) | |
tree | b54c33d8678609a0bfeca9497c563d4e8eee3744 | |
parent | d409a2cf33eead9b44cf95df4265c3274d8afe92 (diff) | |
download | configs-d7e1ea831d7803a040135edf00d224ba6e80f613.tar.gz configs-d7e1ea831d7803a040135edf00d224ba6e80f613.tar.xz configs-d7e1ea831d7803a040135edf00d224ba6e80f613.zip |
[emacs/magit] auto-expand unpulled and unpushed sections
-rw-r--r-- | init.org | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -993,7 +993,9 @@ Not just how I do git, but /the/ way to do git. (setq magit-repository-directories '(("~/.emacs.d/" . 0) ("~/src/git/" . 1))) - (push (cons [unpushed status] 'show) magit-section-initial-visibility-alist) + (nconc magit-section-initial-visibility-alist + '(([unpulled status] . show) + ([unpushed status] . show))) :custom-face (magit-diff-file-heading ((t (:weight normal))))) #+end_src |