Move avy into essential

This commit is contained in:
Ivan Malison 2016-06-09 12:59:47 -07:00
parent 946c8ba3b9
commit e861aa1e64

View File

@ -534,6 +534,16 @@ I use helm for almost all emacs completion
:init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode)))) :init (add-hook 'magit-status-mode-hook 'magit-filenotify-mode))))
#+END_SRC #+END_SRC
** Major-Mode ** 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 * Keybindings
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(bind-key "M-q" 'fill-or-unfill-paragraph) (bind-key "M-q" 'fill-or-unfill-paragraph)
@ -954,14 +964,6 @@ I use helm for almost all emacs completion
(use-package jump-char (use-package jump-char
:bind (("C-;" . jump-char-forward))) :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 (use-package ace-window
:preface :preface
(imalison:prefix-alternatives imalison:ace-window ace-select-window ace-swap-window) (imalison:prefix-alternatives imalison:ace-window ace-select-window ace-swap-window)