mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
19 lines
375 B
EmacsLisp
19 lines
375 B
EmacsLisp
;;; siren-isearch.el --- jimeh's Emacs Siren: isearch configuration. -*- lexical-binding: nil; -*-
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for isearch.
|
|
|
|
;;; Code:
|
|
|
|
(use-package isearch
|
|
:ensure nil
|
|
:custom
|
|
(isearch-lazy-count t)
|
|
(regexp-search-ring-max 200)
|
|
(search-default-mode t)
|
|
(search-ring-max 200))
|
|
|
|
(provide 'siren-isearch)
|
|
;;; siren-isearch.el ends here
|