12 lines
325 B
EmacsLisp
12 lines
325 B
EmacsLisp
;;;; Company configuration.
|
|
(require 'jenga-functions)
|
|
(instl 'company)
|
|
|
|
;; Allign annotations in company auto-complete list.
|
|
(setq company-tooltip-align-annotations t)
|
|
(add-hook 'after-init-hook 'global-company-mode)
|
|
|
|
(setq tab-always-indent 'complete)
|
|
(add-to-list 'completion-styles 'initials t)
|
|
|
|
(provide 'jenga-company)
|