Commit f98985e21de9

Vincent Demeester <vincent@sbr.pm>
2015-03-30 15:55:52
Update dired-listing-switches
- Don't show group - Directories first
1 parent 965c513
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.