summaryrefslogtreecommitdiff
path: root/emacs-config.org
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-config.org')
-rw-r--r--emacs-config.org13
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.