Add icomplete-compute-delay
This commit is contained in:
@@ -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:
|
Here’s what the **minimal-emacs.d** configuration provides:
|
||||||
- Optimizations to speed up both startup and overall usage of Emacs,
|
- 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.,
|
- 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.
|
- This README.md, which offers extensive recommendations for customizing your Emacs configuration.
|
||||||
|
|
||||||
*(More information about the features can be found here: [Features](#features))*
|
*(More information about the features can be found here: [Features](#features))*
|
||||||
|
|||||||
9
init.el
9
init.el
@@ -54,8 +54,7 @@
|
|||||||
|
|
||||||
;; Keep the cursor out of the read-only portions of the.minibuffer
|
;; Keep the cursor out of the read-only portions of the.minibuffer
|
||||||
(setq minibuffer-prompt-properties
|
(setq minibuffer-prompt-properties
|
||||||
'(read-only t intangible t cursor-intangible t face
|
'(read-only t intangible t cursor-intangible t face minibuffer-prompt))
|
||||||
minibuffer-prompt))
|
|
||||||
(add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)
|
(add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)
|
||||||
|
|
||||||
;;; User interface
|
;;; User interface
|
||||||
@@ -512,4 +511,10 @@
|
|||||||
(setq hl-line-sticky-flag nil)
|
(setq hl-line-sticky-flag nil)
|
||||||
(setq global-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
|
;;; init.el ends here
|
||||||
|
|||||||
Reference in New Issue
Block a user