From 6cf734fc1309540eb1a8c24bdd8795f690bf2e2d Mon Sep 17 00:00:00 2001 From: JaeYoo-Im Date: Wed, 28 Aug 2024 17:47:18 +0900 Subject: [PATCH] emacs : add avy bindings --- .config/emacs/lisp/init-general.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/emacs/lisp/init-general.el b/.config/emacs/lisp/init-general.el index 2d06fad..eeb50cb 100644 --- a/.config/emacs/lisp/init-general.el +++ b/.config/emacs/lisp/init-general.el @@ -135,7 +135,9 @@ ;; Avy "v" '(:ignore t :which-key "Avy") "vc" '(avy-goto-char :which-key "Avy Goto Char") - "vw" '(avy-goto-word-0 :which-key "Avy Goto Word") + "ve" '(avy-goto-char-2 :which-key "Avy Goto Char - 2") + "vq" '(avy-goto-word-0 :which-key "Avy Goto Word") + "vw" '(avy-goto-word-1 :which-key "Avy Goto Word - 1") "vl" '(avy-goto-line :which-key "Avy Goto Line")) (provide 'init-general)