Browse Source

keybindings for avy

master
Marc 1 year ago
parent
commit
f2d9111463
1 changed files with 7 additions and 1 deletions
  1. 8
      config.org

8
config.org

@ -643,7 +643,13 @@ Also replaces ace-window for buffer switching.
#+BEGIN_SRC emacs-lisp
(use-package avy
:ensure t
:bind ("M-s w" . avy-goto-char-2))
:general
(:prefix "M-s"
"" '(:ignore t :which-key "avy")
"w" '(avy-goto-char-2 :which-key "avy-jump")
"c" '(:ignore t :which-key "avy copy")
"c l" '(avy-copy-line :which-key "avy copy line")
"c r" '(avy-copy-region :which-key "avy copy region")))
#+END_SRC
* Vertico & Orderless

Loading…
Cancel
Save