Add icomplete-compute-delay

This commit is contained in:
James Cherti
2025-02-09 08:33:21 -05:00
parent a432bbba52
commit c3710eb80a
2 changed files with 8 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ The **minimal-emacs.d** project is a customizable Emacs base that provides **bet
Heres 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))*

View File

@@ -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