diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-18 14:53:30 +0630 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-04-18 14:54:15 +0630 |
commit | f60c3b5bad999d961141ce73a3b71910e102fff5 (patch) | |
tree | 18211926e5330bdc2175c2a8cfd743316d7fb0e4 /Emacs/.config/emacs | |
parent | 592433f91e106428e17b58b642ebb7827cb16f11 (diff) | |
download | dotfiles-f60c3b5bad999d961141ce73a3b71910e102fff5.tar.gz dotfiles-f60c3b5bad999d961141ce73a3b71910e102fff5.tar.bz2 dotfiles-f60c3b5bad999d961141ce73a3b71910e102fff5.zip |
(Emacs/core)+package hydra and use-package-hydra
Defines persistent sub-key-maps which can provide some really nice
behavior.
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/core.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/core.org b/Emacs/.config/emacs/core.org index 53cff6d..a9113f0 100644 --- a/Emacs/.config/emacs/core.org +++ b/Emacs/.config/emacs/core.org @@ -747,3 +747,16 @@ for all snippets I've got. :config (yas-load-directory (no-littering-expand-etc-file-name "yasnippet/snippets"))) #+end_src +* Hydra +Hydra is a great package by =abo-abo= (yes the same guy who made ivy +and swiper) and I hope to use it later on in the config. There are +two use-package declarations here: one for ~hydra~ itself, and the +other for ~use-package-hydra~ which provides the keyword ~:hydra~ in +use-package declarations. +#+begin_src emacs-lisp +(use-package hydra + :straight t) + +(use-package use-package-hydra + :straight t) +#+end_src |