.emacs.d/lisp/init-company.el
2025-03-19 21:31:56 +01:00

15 lines
567 B
EmacsLisp

;;; init-company.el --- Company 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