From e861aa1e64aebbc9ccd69c243286c18974ed0f63 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 9 Jun 2016 12:59:47 -0700 Subject: [PATCH] Move avy into essential --- dotfiles/emacs.d/README.org | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 59366f4f..13f2648d 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -534,6 +534,16 @@ I use helm for almost all emacs completion :init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode)))) #+END_SRC ** Major-Mode +*** avy +#+BEGIN_SRC emacs-lisp + (use-package avy + :preface + (progn + (imalison:prefix-alternatives imalison:avy avy-goto-word-1 avy-goto-char)) + :bind (("C-j" . imalison:avy) + ("M-g l" . avy-goto-line) + ("C-'" . avy-goto-char-2))) +#+END_SRC * Keybindings #+BEGIN_SRC emacs-lisp (bind-key "M-q" 'fill-or-unfill-paragraph) @@ -954,14 +964,6 @@ I use helm for almost all emacs completion (use-package jump-char :bind (("C-;" . jump-char-forward))) - (use-package avy - :preface - (progn - (imalison:prefix-alternatives imalison:avy avy-goto-word-1 avy-goto-char)) - :bind (("C-j" . imalison:avy) - ("M-g l" . avy-goto-line) - ("C-'" . avy-goto-char-2))) - (use-package ace-window :preface (imalison:prefix-alternatives imalison:ace-window ace-select-window ace-swap-window)