diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-10 09:48:39 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-10 09:48:39 -0600 |
commit | b889296fca11f756ade243d4693f78fe1d24a701 (patch) | |
tree | 376d0cf9ef635c66bcc6783a057338b9498f9704 /common | |
parent | 270e0893878ba7fde2f0a3b3d4d557557abf10c9 (diff) |
system changes
Diffstat (limited to 'common')
-rw-r--r-- | common/.config/emacs/init.el.org | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 22b88b7..75b2afc 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -182,6 +182,20 @@ Make PDFs save where in the document it was last. (save-place-mode 1)) #+end_src +Configure superior Emacs window management with =windmove=. +#+begin_src emacs-lisp + (keymap-global-set "C-c w h" 'windmove-left) + (keymap-global-set "C-c w j" 'windmove-down) + (keymap-global-set "C-c w k" 'windmove-up) + (keymap-global-set "C-c w l" 'windmove-right) + + (keymap-global-set "C-c C-w h" 'windmove-swap-states-left) + (keymap-global-set "C-c C-w j" 'windmove-swap-states-down) + (keymap-global-set "C-c C-w k" 'windmove-swap-states-up) + (keymap-global-set "C-c C-w l" 'windmove-swap-states-right) +#+end_src + + * Tools Install =esup= as a profiling tool. #+begin_src emacs-lisp |