diff options
author | noa@gaiwan.org | 2024-06-15 00:39:57 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-15 00:39:57 +0000 |
commit | 0f10bdbcb844bbacf6a2f134838f030f31944018 (patch) | |
tree | 43650e5a302ec5803f4272a2df7f8d60ef68bb95 /emacs/init.el | |
parent | 5011a4fa9d911ca7c61d035c8f55e34dc10af0c1 (diff) |
Make isearch use the minibuffer with isearch-mb
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 6cf669e..dcd15d5 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -755,6 +755,10 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (setopt isearch-lax-whitespace t) (setopt isearch-lazy-count t) +;; Make isearch use the minibuffer like a good normal program +(use-package isearch-mb :ensure t) +(setopt isearch-mb-mode t) + ;; (add-hook 'occur-mode-hook #'hl-line-mode) (global-set-key (kbd "M-o") 'other-window) |