aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-02-15 22:05:14 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-02-15 22:05:14 +0000
commitd03743c72d847b3282233e9ea1377ec266d4cf0b (patch)
tree48cf3a3657c059ef088539f0e7f2ca2a1f89160f
parentb4b9cfc4507d7e1448fe39ef249711ac548968c4 (diff)
downloaddotfiles-d03743c72d847b3282233e9ea1377ec266d4cf0b.tar.gz
dotfiles-d03743c72d847b3282233e9ea1377ec266d4cf0b.tar.bz2
dotfiles-d03743c72d847b3282233e9ea1377ec266d4cf0b.zip
Add evil window resize hydra
-rw-r--r--Emacs/.config/emacs/config.org11
1 files changed, 11 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 5b23b1e..3476ce2 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -748,6 +748,17 @@ the keyword ~:hydra~ in use-package declarations.
(use-package use-package-hydra
:straight t)
+
+(use-package evil
+ :hydra
+ (evil-window-resize-hydra
+ nil "Resize windows easily."
+ ("h" #'evil-window-decrease-width)
+ ("j" #'evil-window-increase-height)
+ ("k" #'evil-window-decrease-height)
+ ("l" #'evil-window-increase-width))
+ :general
+ (leader "wr" #'evil-window-resize-hydra/body))
#+end_src
* Aesthetics
General look and feel of Emacs, perhaps the most important of all the