diff options
| -rw-r--r-- | emacs-config.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index 26b4eeb..b2f2807 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -330,6 +330,15 @@ Allow changing file permissions when in a writable dired buffer. (setq-default wdired-allow-to-change-permissions t)) #+end_src +** Search & Replace +Case-sensitive search by default and show match count in minibuffer. +#+begin_src elisp + (with-eval-after-load 'isearch + (setq-default + case-fold-search nil + isearch-lazy-count t)) +#+end_src + ** Org #+begin_src elisp :noweb yes (with-eval-after-load 'org |
