diff --git a/init.el b/init.el index 70801f6..dc0b29f 100644 --- a/init.el +++ b/init.el @@ -1803,7 +1803,8 @@ With given ARG, display files in `db/important-document-path’." ([remap beginning-of-buffer] . dired-back-to-top) ([remap end-of-buffer] . dired-jump-to-bottom) ("" . nil) - ("" . dired-subtree-toggle)) + ("" . dired-subtree-toggle) + ("" . dired-subtree-cycle)) :init (progn (setq dired-dwim-target t dired-listing-switches "-aGFhlv --group-directories-first --time-style=long-iso" @@ -1922,6 +1923,9 @@ With given ARG, display files in `db/important-document-path’." (use-package dired-subtree :commands (dired-subtree-toggle)))) +(use-package dired-subtree + :commands (dired-subtree-toggle)) + (use-package find-dired :commands (find-dired) :init (setq find-ls-option '("-print0 | xargs -0 ls -ld" . "-ld")))