summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index a6b5777..a915914 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -615,6 +615,14 @@ With prefix argument TIME, also add the current time."
(isearch-repeat-on-direction-change t)
(isearch-wrap-pause 'no))
+(use-package avy
+ :bind (("M-j" . avy-goto-char-timer)
+ :map isearch-mode-map
+ ("M-j" . avy-isearch))
+ :custom
+ (avy-keys (number-sequence ?a ?z))
+ (avy-timeout-seconds 0.2))
+
;; Make window management commands easier to press
(use-package ace-window
:bind ([remap other-window] . ace-window))