Add avy to own-map

main
Sergio Alvariño 2 years ago
parent 6792e9fe6e
commit 314f7d4ec8

@ -466,13 +466,17 @@ This file:
** avy
Quick navigation to words
#+begin_src emacs-lisp
;;(use-package avy
;; :config
;; (avy-setup-default)
;; :bind(
;; ("M-g c" . avy-goto-char-2)
;; )
;; )
(use-package avy
:config
(avy-setup-default)
:bind(
:map own-map
("jj" . avy-goto-char)
("j2" . avy-goto-char-2)
("jw" . avy-goto-word-1)
("jl" . avy-goto-line)
)
)
#+end_src
** iedit

Loading…
Cancel
Save