diff options
| -rw-r--r-- | dot.emacs.d/init.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 772baf9..4cc99b1 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -131,6 +131,19 @@ ("C-c m f" . #'magit-file-popup) ("C-c m d" . #'magit-diff-buffer-file))) +(use-package transpose-frame + :init + (dolist (i '(("j" . transpose-frame) + ("i" . flip-frame) + ("o" . flop-frame) + ("r" . rotate-frame) + ("c" . rotate-frame-clockwise) + ("C" . rotate-frame-anticlockwise))) + (dolist (p '("s-j " "s-j s-")) + (bind-key + (concat p (car i)) + (cdr i))))) + (use-package ace-window :bind ("M-o" . ace-window) :config (setq aw-scope 'frame)) |
