Move some stuff
This commit is contained in:
parent
253d185ca3
commit
bcaa83cfd5
57 changed files with 55 additions and 12 deletions
22
user-lisp/icejam-avy.el
Normal file
22
user-lisp/icejam-avy.el
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
;;; 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue