diff options
| author | Blake Romero <blake@blkrom.com> | 2025-07-11 11:42:16 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-07-11 11:42:16 +0100 |
| commit | 0a921cbf7d61a7b2295c7378aa69327154b35257 (patch) | |
| tree | c971c3b04609d7509ce2784b22562d0aaa223346 | |
| parent | ca301506591502d03064600ba09b40cd6079c7c5 (diff) | |
Add winner mode
| -rw-r--r-- | emacs-config.org | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index a9cb443..8d63bf8 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -157,6 +157,19 @@ Enable which-key that displays a pop-up window of posisble keybindings sequences (which-key-mode) #+end_src +** Winner-mode +Enable winner-mode. +#+begin_src elisp + (winner-mode) +#+end_src + +Set winner mode keybindings. +#+begin_src elisp + (with-eval-after-load 'winner + (keymap-set winner-mode-map "C-<" #'winner-undo) + (keymap-set winner-mode-map "C->" #'winner-redo)) +#+end_src + ** History *** Minibuffer History Enable saving minibuffer history. |
