summary refs log tree commit diff
path: root/emacs.d/config/fcuny-company.el
blob: 62e06de1c8d6e588b18a4a8bc4eb08192260d989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(eval-when-compile
  (require 'use-package))

(use-package company
  :ensure t
  :diminish company-mode
  :config
  (global-company-mode)
  (setq company-global-modes '(not term-mode)
        company-idle-delay 0.3
        company-minimum-prefix-length 3
        company-selection-wrap-around t
        company-show-numbers t
        company-tooltip-align-annotations t
        company-require-match nil))

(provide 'fcuny-company)