From a943a2b3b4460c4857524c830c8d23d70d8141f1 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 11 May 2013 11:48:39 +0100 Subject: Emacs: install and use company-mode --- emacs/elisp/el-get-setup.el | 1 + emacs/init.el | 6 ++++++ 2 files changed, 7 insertions(+) (limited to 'emacs') diff --git a/emacs/elisp/el-get-setup.el b/emacs/elisp/el-get-setup.el index 2d93e441..bd880dbc 100644 --- a/emacs/elisp/el-get-setup.el +++ b/emacs/elisp/el-get-setup.el @@ -22,6 +22,7 @@ auto-indent-mode autopair ace-jump-mode + company dired+ diminish expand-region diff --git a/emacs/init.el b/emacs/init.el index e674c10f..b4f55139 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -296,6 +296,12 @@ (nconc smart-tab-completion-functions-alist '((php-mode . php-complete-function))) (diminish 'smart-tab-mode ""))) +(use-package company + :commands (company-mode) + :bind (("C-" . company-complete)) + :init (progn + (add-hook 'prog-mode-hook #'company-mode))) + ;;;; Directory browsing (use-package dired :defer t -- cgit 1.4.1