From 2e54ce545ee65bca47b574553618534cb4a2366d Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sat, 25 Nov 2017 23:22:32 +0100 Subject: [PATCH] Emacs: added company mode --- emacs/emacs.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 4edeb6c..499b97f 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -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