Commit f98985e21de9
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -485,7 +485,6 @@
Dired is really a cool mode, let's enhance it.
-
#+BEGIN_SRC emacs-lisp
(setq diredp-hide-details-initially-flag nil)
(use-package dired+
@@ -493,6 +492,13 @@
:init)
#+END_SRC
+ Customize a bit the dired buffer
+
+ #+BEGIN_SRC emacs-lisp
+ (setq dired-listing-switches "-laGh1v --group-directories-first")
+ #+END_SRC
+
+
**** Search
Make isearch-forward put the cursor at the start of the search, not the end, so that isearch can be used for navigation. See also http://www.emacswiki.org/emacs/IsearchOtherEnd.