aboutsummaryrefslogtreecommitdiff
path: root/dot.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'dot.emacs.d/init.el')
-rw-r--r--dot.emacs.d/init.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 32bb239..0a06ab4 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -55,6 +55,12 @@
:config (projectile-mode 1)
:bind-keymap ("C-c p" . projectile-command-map))
+(use-package company
+ :bind (:map company-mode-map
+ ([remap completion-at-point] . #'company-complete))
+ :config
+ (global-company-mode))
+
(use-package mercurial
:bind-keymap ("C-c H" . hg-global-map))