Emacs: added company mode

This commit is contained in:
Marcel Kapfer 2017-11-25 23:22:32 +01:00
parent d3e21e28f5
commit 2e54ce545e
1 changed files with 6 additions and 0 deletions

View File

@ -690,6 +690,12 @@
:map html-mode-map ("C-c b" . web-beautify-html)
:map css-mode-map ("C-c b" . web-beautify-css)))
;; company
;; Modular text completion framework
(use-package company
:config
(global-company-mode t))
;; company-math
;; Completion backends for unicode math symbols and latex tags
(use-package company-math