completion/company: add company-prescient

This commit is contained in:
Henrik Lissner 2018-08-04 02:14:43 +02:00
parent 4489ce6b81
commit 316a9f06b2
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 8 additions and 0 deletions

View file

@ -29,6 +29,13 @@
:config (setq company-idle-delay 0.2))
(def-package! company-prescient
:hook (company-mode . company-prescient-mode)
:config
(setq prescient-save-file (concat doom-cache-dir "prescient-save.el"))
(prescient-persist-mode +1))
(def-package! company-box
:when (and EMACS26+ (featurep! +childframe))
:hook (company-mode . company-box-mode)

View file

@ -3,5 +3,6 @@
(package! company)
(package! company-dict)
(package! company-prescient)
(when (and EMACS26+ (featurep! +childframe))
(package! company-box))