9 lines
301 B
EmacsLisp
9 lines
301 B
EmacsLisp
;;; +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.
|