TL;DR: - prefer WPCARRO env-var to BRIEFCASE - remove repository URLs from Emacs libraries - prefer tvl-depot-path where possible - reduce the scope of constants.el - prune (some not all) stale CI configuration Change-Id: I21e9130402502ec6fa2fc4b46753c890069be62d Reviewed-on: https://cl.tvl.fyi/c/depot/+/4545 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com>
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			EmacsLisp
		
	
	
	
	
	
| ;;; wpc-dired.el --- My dired preferences -*- lexical-binding: t -*-
 | |
| 
 | |
| ;; Author: William Carroll <wpcarro@gmail.com>
 | |
| ;; Version: 0.0.1
 | |
| ;; Package-Requires: ((emacs "25.1"))
 | |
| 
 | |
| ;;; Commentary:
 | |
| ;; File management in Emacs, if learned and configured properly, should be
 | |
| ;; capable to reduce my dependency on the terminal.
 | |
| 
 | |
| ;;; Code:
 | |
| 
 | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 | |
| ;; Dependencies
 | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 | |
| 
 | |
| (require 'macros)
 | |
| (require 'general)
 | |
| 
 | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 | |
| ;; Configuration
 | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 | |
| 
 | |
| (progn
 | |
|   (require 'dired)
 | |
|   (setq dired-recursive-copies 'always
 | |
|         dired-recursive-deletes 'top
 | |
|         dired-dwim-target t)
 | |
|   (setq dired-listing-switches "-la --group-directories-first")
 | |
|   (general-define-key
 | |
|    :keymaps 'dired-mode-map
 | |
|    :states '(normal)
 | |
|    ;; Overriding some KBDs defined in the evil-collection module.
 | |
|    "o" #'dired-find-file-other-window
 | |
|    "<SPC>" nil ;; This unblocks some of my leader-prefixed KBDs.
 | |
|    "s" nil ;; This unblocks my window-splitting KBDs.
 | |
|    "c" #'find-file
 | |
|    "f" #'project-find-file
 | |
|    "-" (lambda () (interactive) (find-alternate-file "..")))
 | |
|   (general-add-hook 'dired-mode-hook
 | |
|                     (list (macros-enable dired-hide-details-mode)
 | |
|                           #'auto-revert-mode)))
 | |
| 
 | |
| (progn
 | |
|   (require 'locate)
 | |
|   (general-define-key
 | |
|    :keymaps 'locate-mode-map
 | |
|    :states 'normal
 | |
|    "o" #'dired-find-file-other-window))
 | |
| 
 | |
| (provide 'wpc-dired)
 | |
| ;;; wpc-dired.el ends here
 |