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)