about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/wpc/wpc-dired.el
blob: 7c22a4657fc001cf96d8e144b67744eea0f7ece0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
;;; 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)
  (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