From 49aa0b25061729eec699aa6f42e3be95f24400f5 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:44:26 +0300 Subject: [PATCH] Window navigation keybindings --- .config/emacs/init.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 4d7630b..22c9a96 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -50,6 +50,13 @@ :config (load-theme 'material t)) +(use-package windmove + :straight (:type built-in) + :bind (("s-w" . windmove-up) + ("s-a" . windmove-left) + ("s-s" . windmove-down) + ("s-d" . windmove-right))) + (use-package counsel :bind (("C-s" . swiper-isearch) ("M-x" . counsel-M-x)