summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs-config.org14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org
index 098e394..55c6576 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -1911,3 +1911,17 @@ Automatically create a tab per project, providing a light tab-bar based workspac
(otpp-override-mode 1))
#+end_src
+** Dired Hacks
+https://github.com/Fuco1/dired-hacks
+Collection of useful dired additions.
+
+#+begin_src elisp
+ (use-package dired-narrow
+ :bind (:map dired-mode-map
+ ("/" . dired-narrow-regexp)))
+ (use-package dired-subtree
+ :bind (:map dired-mode-map
+ ("<tab>" . dired-subtree-toggle)
+ ("<backtab>" . dired-subtree-cycle)))
+#+end_src
+