tvl-depot/emacs.d/wpc/packages/wpc-dired.el
William Carroll 3c8e6f0cc5 Support updated emacs
Finally ported my up-to-date emacs configuration here. I was putting
this off for a long while, unsure of how to handle all of the work. All
it took was my laptop being fried to force me to do this. So... voila!
2018-07-19 12:00:08 -04:00

18 lines
481 B
EmacsLisp

;;; dired.el --- My dired preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; Hosts my attempts at configuring dired
;;; Code:
(require 'dired)
(general-def 'dired-mode-map
"c" 'find-file
"f" 'wpc/find-file
"-" 'dired-up-directory)
(general-add-hook 'dired-mode-hook (list (enable dired-hide-details-mode)
#'auto-revert-mode))
(provide 'wpc-dired)
;;; dired.el ends here