From 314f7d4ec8fe2e300d6d88b4de4161d1259634c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Sat, 19 Mar 2022 00:55:57 +0100 Subject: [PATCH] Add avy to own-map --- myconfig.org | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/myconfig.org b/myconfig.org index 1718b25..3046679 100644 --- a/myconfig.org +++ b/myconfig.org @@ -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