summaryrefslogtreecommitdiff
path: root/.config/doom/diredConfig.el
diff options
context:
space:
mode:
Diffstat (limited to '.config/doom/diredConfig.el')
-rw-r--r--.config/doom/diredConfig.el18
1 files changed, 6 insertions, 12 deletions
diff --git a/.config/doom/diredConfig.el b/.config/doom/diredConfig.el
index 57dda32..45cd689 100644
--- a/.config/doom/diredConfig.el
+++ b/.config/doom/diredConfig.el
@@ -1,15 +1,9 @@
;;; 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
- ))
+(evil-define-key 'normal dired-mode-map
+ (kbd "h") 'dired-up-directory
+ (kbd "l") 'dired-find-file
+ (kbd "m") 'dired-mark
+ (kbd "R") 'dired-do-rename
+ (kbd "D") 'dired-delete-file)