provide 'cce/window-management)
(use-package transpose-frame
(
:after evil-leader
:configrequire 'winner)
(1)
(winner-mode
(defhydra hydra-windowing ()"t" transpose-frame)
("r" rotate-frame-clockwise)
("R" rotate-frame-anticlockwise)
("F" flip-frame)
("f" flop-frame)
("h" windmove-left)
("j" windmove-down)
("k" windmove-up)
("l" windmove-right)
("u" winner-undo)
("U" winner-redo))
("w") #'hydra-windowing/body))
(evil-leader/set-key (kbd "s-o") #'other-window) (global-set-key (kbd
Right now I just use this thing to navigate windows, along with EXWM's other-frame
and other-window
bindings. I would love to
have better workspace support but I don't really feel like investing in
it right now.