Skip to content

Commit

Permalink
JCavy use-package refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
dinojr committed Jan 16, 2023
1 parent 1c3957e commit 33a5551
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions elisp/JCavy.el
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
;; ~/.emacs.d/JCavy.el -*- mode: emacs-lisp-*-
(use-package avy)
(avy-setup-default)
(global-set-key (kbd "C-: j") 'avy-goto-char)
(global-set-key (kbd "C-: k") 'avy-goto-char-2)
(global-set-key (kbd "C-: u") 'avy-goto-word-1)
(global-set-key (kbd "C-: i") 'avy-goto-line)
(use-package avy
:config
(avy-setup-default)
(global-set-key (kbd "C-: j") 'avy-goto-char)
(global-set-key (kbd "C-: k") 'avy-goto-char-2)
(global-set-key (kbd "C-: u") 'avy-goto-word-1)
(global-set-key (kbd "C-: i") 'avy-goto-line))

0 comments on commit 33a5551

Please sign in to comment.