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!
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			481 B
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			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
 |