Customize columns for listing magit repositories
Shrink fist column, because my repositories are usually not that long. Version information is also less important than upstream divergence to me, so let's move this behind.
This commit is contained in:
parent
003121ba0c
commit
2cbafcfbfc
13
init.el
13
init.el
@ -1450,6 +1450,19 @@ Note that this workaround is incomplete, as explained in this comment."
|
||||
;; that are not selected, to increase performance.
|
||||
(setq magit-refresh-status-buffer nil)))
|
||||
|
||||
:custom ((magit-repolist-columns '(("Name" 15 magit-repolist-column-ident
|
||||
())
|
||||
("B<U" 3 magit-repolist-column-unpulled-from-upstream
|
||||
((:right-align t)
|
||||
(:sort <)))
|
||||
("B>U" 3 magit-repolist-column-unpushed-to-upstream
|
||||
((:right-align t)
|
||||
(:sort <)))
|
||||
("Version" 25 magit-repolist-column-version
|
||||
((:sort magit-repolist-version<)))
|
||||
("Path" 99 magit-repolist-column-path
|
||||
()))))
|
||||
|
||||
:config (progn
|
||||
(when (fboundp 'global-magit-file-mode)
|
||||
(global-magit-file-mode -1))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user