Add switch-window
This commit is contained in:
parent
51f232a9dd
commit
c8573cde04
1 changed files with 16 additions and 0 deletions
16
config.org
16
config.org
|
|
@ -776,6 +776,22 @@ Credit goes to https://github.com/daedreth/UncleDavesEmacs
|
||||||
(global-set-key (kbd "C-x 3") 'split-and-follow-vertically)
|
(global-set-key (kbd "C-x 3") 'split-and-follow-vertically)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Switching
|
||||||
|
|
||||||
|
#+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" "j" "k" "l" "i" "o"))
|
||||||
|
:bind
|
||||||
|
("C-x o" . switch-window))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* Avy
|
* Avy
|
||||||
|
|
||||||
https://github.com/abo-abo/avy
|
https://github.com/abo-abo/avy
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue