aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-21 18:17:16 -0500
committerCraig Jennings <c@cjennings.net>2026-07-21 18:17:16 -0500
commit08afe85598ade265341b4ea72ec2ece25ddc42fd (patch)
treee31cece0ea4323c67d63a9e7d4c5c79073e24f45
parented306961291c49fd3f7c445b3a8ef91d2708da2c (diff)
downloaddotemacs-08afe85598ade265341b4ea72ec2ece25ddc42fd.tar.gz
dotemacs-08afe85598ade265341b4ea72ec2ece25ddc42fd.zip
chore: raise company-idle-delay to 4 seconds
Completion rarely wants to fire on a pause, and the popup is a distraction mid-thought (especially in org-mode). A 4-second idle delay keeps it out of the way while still surfacing on a deliberate wait.
-rw-r--r--modules/selection-framework.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/selection-framework.el b/modules/selection-framework.el
index 8e3ee252..47fbf7c7 100644
--- a/modules/selection-framework.el
+++ b/modules/selection-framework.el
@@ -225,7 +225,7 @@
("C-p" . company-select-previous))
:custom
(company-backends '(company-capf company-files company-keywords))
- (company-idle-delay 2)
+ (company-idle-delay 4)
(company-minimum-prefix-length 2)
(company-show-numbers t)
(company-tooltip-align-annotations t)