emacs/lisp/icejam-avy.el
Maciej Szlosarczyk 8242a27306
Some checks failed
/ Test config on 20 (push) Failing after 47s
Fix compilation warning in avy
2025-01-29 08:17:02 +02:00

22 lines
565 B
EmacsLisp

;;; icejam-avy.el --- summary -*- lexical-binding: t; -*-
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Commentary:
;; Avy is a navigation manager.
(eval-when-compile (defvar icejam-keys-mode-map))
;;; Code:
(use-package avy :ensure t :defer t
:config
(setopt avy-timeout-seconds 1.0) ;; Wait for 1 second for candidates
:bind (:map icejam-keys-mode-map
;; Jump to text in sight with CMD-j
([(hyper j)] . avy-goto-char-timer)))
(provide 'icejam-avy)
;;; icejam-avy.el ends here