From c3710eb80a8afdc3205ca5209bf82341a9401f4d Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sun, 9 Feb 2025 08:33:21 -0500 Subject: [PATCH] Add icomplete-compute-delay --- README.md | 2 +- init.el | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7353767..2fef8f5 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The **minimal-emacs.d** project is a customizable Emacs base that provides **bet Here’s what the **minimal-emacs.d** configuration provides: - Optimizations to speed up both startup and overall usage of Emacs, - Improved default Emacs settings, including user experience enhancements, UI element management, optimized garbage collection, better configurations for built-in packages, etc., -- Provides the user with complete control over selecting major and minor modes (*minimal-emacs.d* does not enable any modes by default, allowing users to choose which modes to activate). +- Provides the user with complete control over selecting major and minor modes (*minimal-emacs.d* does not enable modes by default, allowing users to choose which modes to activate). - This README.md, which offers extensive recommendations for customizing your Emacs configuration. *(More information about the features can be found here: [Features](#features))* diff --git a/init.el b/init.el index f2ce05c..3088fda 100644 --- a/init.el +++ b/init.el @@ -54,8 +54,7 @@ ;; Keep the cursor out of the read-only portions of the.minibuffer (setq minibuffer-prompt-properties - '(read-only t intangible t cursor-intangible t face - minibuffer-prompt)) + '(read-only t intangible t cursor-intangible t face minibuffer-prompt)) (add-hook 'minibuffer-setup-hook #'cursor-intangible-mode) ;;; User interface @@ -512,4 +511,10 @@ (setq hl-line-sticky-flag nil) (setq global-hl-line-sticky-flag nil) +;;; icomplete + +;; Do not delay displaying completion candidates in `fido-mode' or +;; `fido-vertical-mode' +(setq icomplete-compute-delay 0.01) + ;;; init.el ends here