diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-04-01 19:40:08 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-04-01 19:40:08 +0200 |
| commit | f667b097738b1087773e4afff44a456344a4a6fc (patch) | |
| tree | 3412fe26728e89ffe0d2a10388c47ac0eca6b2b2 | |
| parent | c8f60b035a30a0e2cfeb4eeedfb397c6b5c3bbe5 (diff) | |
feat: added switch-window package
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | config.org | 20 |
2 files changed, 21 insertions, 0 deletions
@@ -1,5 +1,6 @@ config.el custom-vars.el +history ido.last smex-items .last-package-update-day @@ -285,3 +285,23 @@ Displays colour of a hex-code as background-colour behind said hex-code :init (add-hook 'css-mode-hook #'rainbow-mode 1)) #+end_src + +** Initialize =switch-window= + +*** Description +Better way to switch windows + +*** Code +#+begin_src emacs-lisp + (use-package switch-window + :ensure t + :config + (setq switch-window-input-style 'minibuffer) + (setq switch-window-increase 4) + (setq switch-window-threshold 2) + (setq switch-window-shortcut-style 'qwerty) + (setq switch-window-qwerty-shortcuts + '("a" "s" "d" "f" "h" "j" "k" "l")) + :bind + ([remap other-window] . switch-window)) +#+end_src |
