Browse Source

added ivy-hydra

master
Marc Pohling 6 years ago
parent
commit
154e87680a
1 changed files with 20 additions and 13 deletions
  1. 33
      config.org

33
config.org

@ -484,6 +484,20 @@ Info in Emacs: M-x customize-group which-key
#+end_src #+end_src
* Hydra
Hydra allows grouping of commands
#+begin_src emacs-lisp
(use-package hydra
:ensure t
:bind
("C-c f" . hydra-flycheck/body)
:config
(setq-default hydra-default-hint nil)
)
#+end_src
* Undo * Undo
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package undo-tree (use-package undo-tree
@ -584,6 +598,12 @@ Swiper ivy-enhances isearch
) )
#+end_src #+end_src
Ivy-Hydra adds stuff in minibuffer when you press C-o
#+BEGIN_SRC emacs-lisp
(use-package ivy-hydra
:ensure t)
#+END_SRC
* Latex * Latex
Requirements for Linux: Requirements for Linux:
@ -1156,19 +1176,6 @@ end_src
* Hydra
Hydra allows grouping of commands
#+begin_src emacs-lisp
(use-package hydra
:ensure t
:bind
("C-c f" . hydra-flycheck/body)
:config
(setq-default hydra-default-hint nil)
)
#+end_src
** Hydra Flycheck ** Hydra Flycheck
Flycheck is necessary, obviously Flycheck is necessary, obviously

Loading…
Cancel
Save