blob: a0443663cbdf4d2a03fb47f17900aecc406793c4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; diredConfig.el -*- lexical-binding: t; -*-
(use-package dired
:ensure nil
:commands (dired dired-jump)
:bind (("C-x C-j" . dired-jump))
:config
(evil-collection-define-key 'normal' dired-mode-map
"h" 'dired-up-directory
"l" 'dired-find-file
"R" 'dired-do-rename
"D" 'dired-do-delete
"m" 'dired-mark
))
|