summary refs log tree commit diff
path: root/emacs.d/modules/module-autocomplete.el
blob: ce15dbc8b1aedfb6c48662cf247393c8d31bbebe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(require 'config-package)

(use-package company
  :commands company-mode
  :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 'module-autocomplete)