blob: 1d6cae858fc1e49f5efc0c6822469e65f0bf36bd (
plain)
1
2
3
4
5
6
|
;; Avy keybinds superfast cursor movement
;;; https://github.com/abo-abo/avy
(use-package avy)
(setq avy-keys '(?a ?r ?s ?t ?n ?e ?i ?o)
avy-all-windows nil)
(bind-key* "C-q" 'avy-goto-char)
|