Tweaking the delay for suggestions from company.

This commit is contained in:
James Patrick 2021-04-02 15:51:49 -04:00
parent 9bd27bc4be
commit bad2de65e2
2 changed files with 9 additions and 0 deletions

8
emacs/+company.el Normal file
View File

@ -0,0 +1,8 @@
;;; +company.el -*- lexical-binding: t; -*-
;; Make company a little faster to respond.
(after! company
(setq company-idle-delay 0.5
company-minimum-prefix-length 2)
(setq company-show-numbers t)
(add-hook 'evil-normal-state-entry-hook #'company-abort)) ;; make aborting less annoying.

View File

@ -21,3 +21,4 @@
(load! "+mail")
(load! "+org")
(load! "+company")