summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-company.el
blob: a58a15e11371ce2d90c5a220a27142e8978d3685 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(use-package company
  :ensure t
  :diminish company-mode

  :custom
  (company-minimum-prefix-length 2)
  (company-tooltip-align-annotations t)
  (company-tooltip-limit 12)
  (company-idle-delay 0))

(provide 'fcuny-company)