diff options
author | Amin Bandali <mab@gnu.org> | 2020-01-21 21:24:09 -0500 |
---|---|---|
committer | Amin Bandali <mab@gnu.org> | 2020-01-21 21:42:29 -0500 |
commit | 81ea6e5572692e09fbda48d697afd93b03f6e56a (patch) | |
tree | fc21a859765893ae8d7d8dd21ae503750a15eb0a | |
parent | a5cc22f4475d08067bac19d3d36d27b99d2aa7ed (diff) | |
download | configs-81ea6e5572692e09fbda48d697afd93b03f6e56a.tar.gz configs-81ea6e5572692e09fbda48d697afd93b03f6e56a.tar.xz configs-81ea6e5572692e09fbda48d697afd93b03f6e56a.zip |
emacs: magit: looks for repos in direct subdirs of ~/src/git/ too
e.g. ~/src/git/emacs/emacs-27 will now be discovered
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index e36e204..21a1fff 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -857,7 +857,7 @@ around if needed." ;; 'magit-insert-untracked-files ;; 'append) (setq magit-repository-directories '(("~/" . 0) - ("~/src/git/" . 1))) + ("~/src/git/" . 2))) (nconc magit-section-initial-visibility-alist '(([unpulled status] . show) ([unpushed status] . show))) |