Files
.emacs.d/modules/navigation/siren-avy.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

25 lines
445 B
EmacsLisp

;;; siren-avy.el --- jimeh's Emacs Siren: avy configuration.
;;; Commentary:
;; Basic configuration for avy. Avy allows us to effectively navigate to
;; visible things.
;;; Code:
(use-package avy
:general
("C-c j" 'avy-goto-word-or-subword-1)
("C-c SPC" 'avy-goto-char)
:custom
(avy-background t)
(avy-style 'at-full))
(use-package ace-window
:general
("M-o" 'ace-window))
(provide 'siren-avy)
;;; siren-avy.el ends here