diff options
| author | Craig Jennings <c@cjennings.net> | 2025-05-24 12:43:06 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-05-24 12:43:06 -0500 |
| commit | 8ada50237d0294b435708c699fc7f363380d2237 (patch) | |
| tree | a13686251a7b16cab77be882310244ba2c832a02 /modules/selection-framework.el | |
| parent | f9176904e95d392d45c26e37c5354e4d575f3b05 (diff) | |
| download | dotemacs-8ada50237d0294b435708c699fc7f363380d2237.tar.gz dotemacs-8ada50237d0294b435708c699fc7f363380d2237.zip | |
delay 2 secs for autocomplete; don't autocomplete in text modes
Diffstat (limited to 'modules/selection-framework.el')
| -rw-r--r-- | modules/selection-framework.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/selection-framework.el b/modules/selection-framework.el index 1ee83ca2..a0782997 100644 --- a/modules/selection-framework.el +++ b/modules/selection-framework.el @@ -12,7 +12,8 @@ (use-package company :defer .5 :hook - ((text-mode . company-mode) + ( + ;; (text-mode . company-mode) ;; also disables in org mode (prog-mode . company-mode) (lisp-interaction-mode . company-mode)) :custom @@ -28,7 +29,7 @@ ;; provide proper casing even if I don't. (company-dabbrev-ignore-case t) ;; company completion wait - ( company-idle-delay 0.7) + ( company-idle-delay 2) ;; use vscode icons in the margin (company-format-margin-function #'company-vscode-light-icons-margin) ;; no company-mode in shell & eshell |
