feat(Doom): rebind more SPC w keys
This commit is contained in:
parent
e3d3b17a14
commit
c3ff6becf0
1 changed files with 21 additions and 0 deletions
|
@ -145,10 +145,31 @@ And jumps to your `doom!' block."
|
|||
)
|
||||
|
||||
(map! :map evil-window-map
|
||||
;; Unbind Vim HJKL keys
|
||||
"h" nil
|
||||
"H" nil
|
||||
|
||||
"j" nil
|
||||
"J" nil
|
||||
|
||||
"k" nil
|
||||
"K" nil
|
||||
|
||||
"l" nil
|
||||
"L" nil
|
||||
|
||||
;; Rebind to arrow keys
|
||||
"<left>" #'evil-window-left
|
||||
"S-<left>" #'+evil/window-move-left
|
||||
|
||||
"<right>" #'evil-window-right
|
||||
"S-<right>" #'+evil/window-move-right
|
||||
|
||||
"<up>" #'evil-window-up
|
||||
"S-<up>" #'+evil/window-move-up
|
||||
|
||||
"<down>" #'evil-window-down
|
||||
"S-<down>" #'+evil/window-move-down
|
||||
)
|
||||
|
||||
(use-package! evil-goggles
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue