Files
.emacs.d/modules/navigation/siren-avy.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

26 lines
474 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
:bind
("C-c j" . avy-goto-word-or-subword-1)
("C-c SPC" . avy-goto-char)
("M-o" . ace-window)
:config
(setq avy-background t
avy-style 'at-full))
(use-package ace-window
:bind
("M-o" . ace-window))
(provide 'siren-avy)
;;; siren-avy.el ends here