diff options
| author | Daniel <[email protected]> | 2024-10-11 13:00:04 -0400 |
|---|---|---|
| committer | Daniel <[email protected]> | 2024-10-11 13:00:04 -0400 |
| commit | ffd11941868aff14ea57653ba4f8c251ea9d7ccf (patch) | |
| tree | badfd53977d06d9f009db2b64a9686d6daabd8ef /bard-emacs-modules/bard-emacs-window.el | |
| parent | 685e2836f1c2b506b5520f7248ffe8425b303702 (diff) | |
winum
Diffstat (limited to 'bard-emacs-modules/bard-emacs-window.el')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-window.el | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/bard-emacs-modules/bard-emacs-window.el b/bard-emacs-modules/bard-emacs-window.el index 8cd6ff4..1bc8ecb 100644 --- a/bard-emacs-modules/bard-emacs-window.el +++ b/bard-emacs-modules/bard-emacs-window.el @@ -14,9 +14,21 @@ (setq window-min-height 3) (setq window-min-width 30)) -;; (use-package beframe -;; :ensure t -;; ) +(use-package winum + :ensure t + :bind + (("M-1" . winum-select-window-1) + ("M-2" . winum-select-window-2) + ("M-3" . winum-select-window-3) + ("M-4" . winum-select-window-4) + ("M-5" . winum-select-window-5) + ("M-6" . winum-select-window-6) + ("M-7" . winum-select-window-7) + ("M-8" . winum-select-window-8) + ("M-9" . winum-select-window-9)) + :config + (setq winum-scope 'frame-local) + ) (use-package windmove :bind* |
