added evil bindigns to lispy movement
This commit is contained in:
parent
3b0860eea6
commit
87fcaafb5a
8
conf.org
8
conf.org
|
@ -3470,6 +3470,14 @@ Since I use vi mode in my terminal emulator, need to preserve the escape key's r
|
||||||
(kbd "C-j") 'nd/term-send-raw-down
|
(kbd "C-j") 'nd/term-send-raw-down
|
||||||
(kbd "H-j") 'nd/term-send-raw-down)
|
(kbd "H-j") 'nd/term-send-raw-down)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
**** lisp
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(evil-define-key 'normal emacs-lisp-mode-map
|
||||||
|
"gh" #'lispy-left
|
||||||
|
"gl" #'lispy-flow
|
||||||
|
"gj" #'lispy-down
|
||||||
|
"gk" #'lispy-up)
|
||||||
|
#+END_SRC
|
||||||
** local
|
** local
|
||||||
These are for mode-specific bindings that can/should be outside of the evil maps above (there are not many, and these may be merged with their evil bretheren in the future).
|
These are for mode-specific bindings that can/should be outside of the evil maps above (there are not many, and these may be merged with their evil bretheren in the future).
|
||||||
*** org-mode
|
*** org-mode
|
||||||
|
|
Loading…
Reference in New Issue