Magit Status To Show Tracked Files
While currently piecing together my git repositories and figuring out which files to commit I am invariably going to have some Untracked files but I also would like to see the Tracked files in magit-status
Well emacs being emacs this can be easily achieved, I added the following to my use-package magit
declaration.
:config
(magit-add-section-hook
'magit-status-sections-hook 'magit-insert-tracked-files nil 'append)
