summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-company.el
blob: fab7c9953e756dd91cd1c2467513ab14189671c3 (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 1))

(provide 'fcuny-company)