emacs.d/modules/jenga-company.el

16 lines
409 B
EmacsLisp
Raw Normal View History

2019-12-07 23:09:25 +01:00
;;;; Company configuration.
2020-01-05 23:51:24 +01:00
(use-package company
:ensure t
:defer t
:init (global-company-mode)
:config
(progn
(add-to-list 'completion-styles 'initials t)
(bind-key "M-<tab>" #'company-complete company-mode-map)
(setq company-tooltip-align-annotations t
tab-always-indent 'complete)
(setq company-dabbrev-downcase nil))
:diminish company-mode)
2019-12-07 23:09:25 +01:00
(provide 'jenga-company)