.emacs.d/lisp/init-company.el

16 lines
568 B
EmacsLisp
Raw Normal View History

2024-09-06 11:42:11 +02:00
;;; init-company.el --- Companyy autocompletion
;;; Commentary:
;;; Code:
(when (maybe-require-package 'company)
;;(diminish 'company-mode)
(add-hook 'after-init-hook 'global-company-mode)
(setq company-minimum-prefix-length 1
company-idle-delay 0.0
company-selection-wrap-around t
company-tooltip-align-annotations t
company-frontends '(company-pseudo-tooltip-frontend ; show tooltip even for single candidate
company-echo-metadata-frontend)))
(provide 'init-company)
;;; end of file init-company.el