diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-10 17:13:03 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-10 17:14:16 -0800 |
commit | 2a8ab5678b5e93e470caf5210eee2ce58366cbe9 (patch) | |
tree | 1aad91e3109de3f80e0b12be1437ea98b4ef1f7c | |
parent | [emacs] remove configuration for windowed mode. (diff) | |
download | emacs.d-2a8ab5678b5e93e470caf5210eee2ce58366cbe9.tar.gz |
[emacs] add company mode
Diffstat (limited to '')
-rw-r--r-- | emacs.d/inits/50_development.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/inits/50_development.el b/emacs.d/inits/50_development.el index 303e079..4356dd3 100644 --- a/emacs.d/inits/50_development.el +++ b/emacs.d/inits/50_development.el @@ -15,6 +15,12 @@ :config (projectile-global-mode)) +(use-package company + :ensure t + :config + (progn + (add-hook 'prog-mode-hook 'company-mode))) + (use-package rainbow-delimiters :ensure t :defer t |