diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2024-04-13 16:10:58 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2024-04-13 16:10:58 +0100 |
| commit | 5c39b877f6ada5ea79c31eb93cd4c3c1ff64823b (patch) | |
| tree | 7e272e6f5d650c920ad1f04e2c343b8095fe2009 | |
| parent | 22614bac5dd3ae2f14da89ed990acd867497bea2 (diff) | |
emacs: Ignore case in more places
| -rw-r--r-- | emacs/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 33ce9db..022149b 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -84,6 +84,9 @@ (setq completion-ignore-case t completion-in-region-function #'consult-completion-in-region) +(setopt read-buffer-completion-ignore-case t + read-file-name-completion-ignore-case t) + (dolist (fn '(isearch-forward isearch-backward)) (advice-add fn :after #'my/isearch-region)) |
