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)