I'm looking for a way to navigate in dired/dired+ and evil mode by using 'h' 'j' 'k' 'l' like as in vim netrw. I've found some lisp phrases and applied those but those don't work at all.
For instance,
(eval-after-load 'dired
'(progn
;; use the standard Dired bindings as a base
(evil-make-overriding-map dired-mode-map 'normal t)
(evil-define-key 'normal dired-mode-map
"h" 'evil-backward-char
"j" 'evil-next-line
"k" 'evil-previous-line
"l" 'evil-forward-char
"r" 'dired-do-redisplay))) ; "l"
Emacs just runs 'dired-do-kill-lines' as if it doesn't recognize my configuration. Could you give me some configuration, please?