set company-idle-delay to nil for eshell

This commit is contained in:
dive 2020-03-08 22:35:32 +00:00
parent cb4f9b86c6
commit bf1599635d

View file

@ -159,6 +159,7 @@ You should use `set-eshell-alias!' to change this.")
(defun +eshell-init-company-h () (defun +eshell-init-company-h ()
(when (featurep! :completion company) (when (featurep! :completion company)
(company-mode +1) (company-mode +1)
(setq-local company-idle-delay nil)
(setq-local company-backends '(company-pcomplete)) (setq-local company-backends '(company-pcomplete))
(setq-local company-frontends (cons 'company-tng-frontend company-frontends)) (setq-local company-frontends (cons 'company-tng-frontend company-frontends))
(when (bound-and-true-p evil-local-mode) (when (bound-and-true-p evil-local-mode)