Commit b322e727533d
.emacs.d/emacs.el
@@ -202,6 +202,10 @@
:bind (:map dired-mode-map
("/" . dired-narrow)))
+(use-package dired-quick-sort
+ :ensure t
+ :init (dired-quick-sort-setup))
+
(use-package diminish
:ensure t
:demand t
.emacs.d/emacs.org
@@ -543,7 +543,6 @@
Another really cool package is dired-narrow, that allows to
dynamically filter a dired folder.
-
#+BEGIN_SRC emacs-lisp
(use-package dired-narrow
:ensure t
@@ -552,6 +551,15 @@
("/" . dired-narrow)))
#+END_SRC
+ Finally, I want to be able to sort stuff up. [[https://gitlab.com/xuhdev/dired-quick-sort][dired-quick-sort]] seem
+ to do that in style with hydra.
+
+ #+BEGIN_SRC emacs-lisp
+ (use-package dired-quick-sort
+ :ensure t
+ :init (dired-quick-sort-setup))
+ #+END_SRC
+
** Diminish minor modes from the mode line
Now that we have made sure we have installed use-package, we will make