From 9350f41fe29b2c71f2cafda37db6d4ce11bb9034 Mon Sep 17 00:00:00 2001 From: "Jaisser J. Sanguino" Date: Tue, 14 Apr 2026 13:22:06 -0300 Subject: [PATCH] chore(keybindings): Migrate windmove and window navigation to Meta --- configs/init-utils.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/configs/init-utils.el b/configs/init-utils.el index 2672dd0..d309c29 100644 --- a/configs/init-utils.el +++ b/configs/init-utils.el @@ -52,11 +52,12 @@ ;; Moverme entre frames (use-package windmove :ensure nil - :bind (("s-K" . windmove-up) - ("s-J" . windmove-down) - ("s-H" . windmove-left) - ("s-L" . windmove-right) - ("s-O" . other-window))) + :bind (("M-I" . windmove-up) + ("M-K" . windmove-down) + ("M-J" . windmove-left) + ("M-L" . windmove-right) + ("M-O" . other-window) + ("M-o" . other-window))) ;; Terminal (use-package vterm