diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-05-08 11:09:58 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-05-08 11:09:58 -0700 |
commit | 2544dd8db3fc1a139643b328f36f00de47ab1cde (patch) | |
tree | f68d1217c2424a7c74d8032ff994d1cde9a9673f /emacs | |
parent | [emacs] treat PROJECT files as YAML (diff) | |
download | emacs.d-2544dd8db3fc1a139643b328f36f00de47ab1cde.tar.gz |
[emacs] show git info in dired-mode
When a directory, pressing ')' reveals git information.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-navigation.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-navigation.el b/emacs.d/custom/fcuny-navigation.el index f51e99c..871b411 100644 --- a/emacs.d/custom/fcuny-navigation.el +++ b/emacs.d/custom/fcuny-navigation.el @@ -56,6 +56,11 @@ (setq dired-recursive-deletes 'always) (setq dired-recursive-copies 'always)) +(use-package dired-git-info + :ensure t + :bind (:map dired-mode-map + (")" . dired-git-info-mode))) + (use-package dired-x :ensure nil :config |