diff options
| author | Raul Benencia <rul@kalgan.cc> | 2021-04-23 08:03:45 -0700 | 
|---|---|---|
| committer | Raul Benencia <rul@kalgan.cc> | 2021-04-23 08:03:45 -0700 | 
| commit | 58fde63a5ef0846eebb95ec8845164e17947e8ab (patch) | |
| tree | 18af5bb51501c48e00d0b2e151334939084bd119 /.emacs.local.d/modes | |
| parent | 3e66408ff38f5fc9349e2024ebe9a56d62c0e42d (diff) | |
Do not fuzzy search on files
Diffstat (limited to '.emacs.local.d/modes')
| -rw-r--r-- | .emacs.local.d/modes/ivy.el | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/.emacs.local.d/modes/ivy.el b/.emacs.local.d/modes/ivy.el index ebab770..0809729 100644 --- a/.emacs.local.d/modes/ivy.el +++ b/.emacs.local.d/modes/ivy.el @@ -9,7 +9,8 @@    (setq ivy-height 20)    (setq ivy-count-format "%d/%d ")    (setq ivy-re-builders-alist -           '((t . ivy--regex-fuzzy)))) +        '((swiper . ivy--regex-plus) +          (t      . ivy--regex-fuzzy)))  ;; Override the basic Emacs commands  (use-package counsel | 
