Files
.emacs.d/modules/siren-avy.el

24 lines
536 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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