diff options
author | Alan Pearce | 2014-07-01 22:46:41 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-01 22:46:41 +0100 |
commit | b518f6cf914ad77290cf1907886c94faebae6c53 (patch) | |
tree | 1bf27744b02d5e6b607109629c8dbca01e03570c | |
parent | 14bae0b43c4c1c9ba34e360c291a6a3f1a103096 (diff) | |
download | nixfiles-b518f6cf914ad77290cf1907886c94faebae6c53.tar.lz nixfiles-b518f6cf914ad77290cf1907886c94faebae6c53.tar.zst nixfiles-b518f6cf914ad77290cf1907886c94faebae6c53.zip |
Emacs: reduce flx-ido max entries to 1000
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 3417cce6..f2b6c051 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -485,7 +485,8 @@ (req-package flx-ido :require ido :init (progn - (flx-ido-mode 1))) + (flx-ido-mode 1) + (setq flx-ido-threshhold 1000))) (req-package smex :require ido |