Skip to content

Commit

Permalink
feat: update key bindings (#392)
Browse files Browse the repository at this point in the history
* feat: add repeat map for window keys

* feat: add binding for ellama commands

* docs: remove implemented todos
  • Loading branch information
terlar authored Aug 8, 2024
1 parent 9c22b66 commit 249c688
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions init.org
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,10 @@ Shorten long Git branch names as well as replace Git prefix with a nice icon.
("m" . maximize-window)
("r" . window-configuration-to-register)
("w" . window-toggle-side-windows))
(:repeat-map resize-window-repeat-map
("+" . balance-windows)
("-" . fit-window-to-buffer)
("m" . maximize-window))
(:repeat-map buffer-repeat-map
("b" . next-buffer)
("B" . previous-buffer)
Expand Down Expand Up @@ -1133,10 +1137,14 @@ Transpose window arrangement.
(use-package transpose-frame
:ensure t
:bind
(:map window-prefix-map
("t" . transpose-frame)
("f" . flip-frame)
("F" . flop-frame)))
((:map window-prefix-map
("t" . transpose-frame)
("f" . flip-frame)
("F" . flop-frame))
(:repeat-map window-arrangement-repeat-map
("t" . transpose-frame)
("f" . flip-frame)
("F" . flop-frame))))
#+end_src

Manage "popups".
Expand Down Expand Up @@ -3963,6 +3971,8 @@ Visual undo history navigation.
:ensure t
:functions
(make-llm-ollama)
:bind-keymap
("C-, e" . ellama-command-map)
:config
(setq ellama-auto-scroll t)
(setq ellama-provider
Expand Down Expand Up @@ -4096,9 +4106,6 @@ I am trying to reduce the amount of custom keybindings, therefore I present a ta
- Group editing bindings under logical prefix
- Binding for
- org-store-link
- repeat map for window resize operations
- =C-x {=,= =C-x +=, maximize-window
- flip-frame/flop-frame/transpose-frame
- leader mnemonics? as a separate package, or is it too much work?
- (t)oggle
- (s)earch
Expand Down

0 comments on commit 249c688

Please sign in to comment.