diff options
author | mms <michal@sapka.me> | 2024-06-12 16:00:39 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-06-12 16:00:39 +0200 |
commit | 6062cd951bd2b66b463ca0e5a83b0e3dca777467 (patch) | |
tree | df4d77a2895354e05a9240a9a8ccae7871fd1b74 /mms-keyboard.org | |
parent | 7d645e3da4075c69dbd1b9df47e9cd857861041b (diff) |
feat: Avy
Diffstat (limited to 'mms-keyboard.org')
-rw-r--r-- | mms-keyboard.org | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/mms-keyboard.org b/mms-keyboard.org index 946e2f9..32c5715 100644 --- a/mms-keyboard.org +++ b/mms-keyboard.org @@ -136,7 +136,7 @@ I'll move them to dedicated sections when I reach them. * Xah Lee Flykeys - +# #+begin_src emacs-lisp (use-package xah-fly-keys :config @@ -153,3 +153,15 @@ I'll move them to dedicated sections when I reach them. #+end_src +* Avy + +Avy is a quick jump-to-place package. +I use it in a very basic way. + +#+begin_src emacs-lisp + (use-package avy + :after xah-fly-keys + :config + (define-key xah-fly-command-map (kbd "SPC -") 'avy-goto-char-timer) + ) +#+end_src |