diff options
author | noa | 2024-11-15 02:47:45 +0800 |
---|---|---|
committer | noa | 2024-11-15 02:47:45 +0800 |
commit | 5bc860b7de68c7e9acbf3e6c40bc1a6a147b5177 (patch) | |
tree | 7cc6f28378794f9982dcea716b876183f2150070 | |
parent | b046a66143fe8b3d0c7f331c306135ae214d020c (diff) |
Enable isearch-mb mode
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index e2961d9..05d54c8 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -614,7 +614,9 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." ;; I don't like the fact that isearch doesn't respect the minibuffer (use-package isearch-mb - :ensure t) + :ensure t + :custom + (isearch-mb-mode t)) (use-package visual-regexp :ensure t) |