blob: 57dda324eb00b32ba530a6ae34fbe8958f614dc2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;;; 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
))
|