Activate avy via use-package

This commit is contained in:
Gergely Polonkai 2016-10-14 11:12:52 +02:00
parent 11332d582d
commit 78f6ebc3d3
1 changed files with 11 additions and 0 deletions

11
init.el
View File

@ -409,6 +409,17 @@
:bind
(("M-P" . ace-window)))
(use-package avy
:demand
:config
(avy-setup-default)
:bind
(("C-:" . avy-goto-char)
("C-'" . avy-goto-char-2)
("M-g f" . avy-goto-line)
("M-g w" . avy-goto-word-1)
("M-g e" . avy-goto-word-0)))
;; Load my own functions
(load "gnu-c-header.el")
(load "toggle-window-split.el")