-
I am using
(spacemacs/set-leader-keys
"wN" 'evil-window-move-very-bottom
"wn" 'evil-window-down
"wE" 'evil-window-move-very-top
"we" 'evil-window-up
"wI" 'evil-window-move-far-right
"wi" 'evil-window-right
) Then now I noticed |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I had to do the research myself at last... Well I managed to get it to work. Here is the guide for the other fellow Colemak people: Put this in the user config section of your (evil-collection-define-key 'normal 'dired-mode-map
"n" 'dired-next-line
"e" 'dired-previous-line
"h" 'dired-up-directory
"i" 'dired-find-file
(kbd "M-C-e") 'dired-tree-up
(kbd "M-C-n") 'dired-tree-down
(kbd "M-C-h") 'dired-prev-subdir
(kbd "M-C-i") 'dired-next-subdir
(kbd "* C-e") 'dired-prev-marked-file
(kbd "* C-n") 'dired-next-marked-file
) |
Beta Was this translation helpful? Give feedback.
I had to do the research myself at last... Well I managed to get it to work. Here is the guide for the other fellow Colemak people:
Put this in the user config section of your
.spacemacs
file: