La solución (respuesta aceptada) de Drew de usar Dired + no funcionó para mí (estaba jugando con mis búferes dired para que solo aparecieran carpetas / nombres de archivos, pero no toda la otra información normalmente en el búfer dired. Podría ser hacer con una de mis personalizaciones)
Luego encontré otro que funcionaba usando dired-simple.el . Después de descargar el archivo vinculado y colocarlo en su ruta de carga, inclúyalo en su archivo de inicio
(require 'dired-single)
(defun my-dired-init ()
"Bunch of stuff to run for dired, either immediately or when it's
loaded."
;; <add other stuff here>
(define-key dired-mode-map [return] 'dired-single-buffer)
(define-key dired-mode-map [mouse-1] 'dired-single-buffer-mouse)
(define-key dired-mode-map "^"
(function
(lambda nil (interactive) (dired-single-buffer "..")))))
;; if dired's already loaded, then the keymap will be bound
(if (boundp 'dired-mode-map)
;; we're good to go; just add our bindings
(my-dired-init)
;; it's not loaded yet, so add our bindings to the load-hook
(add-hook 'dired-load-hook 'my-dired-init))
dired+
, intente configurar lo siguiente:(customize-set-variable 'diredp-hide-details-initially-flag nil)