aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-04-03 22:57:33 +0200
committerThomas Schneider <qsx@qsx.re>2019-04-03 22:57:33 +0200
commitb8afd50fe7868a94e440b5464179d2171d6c87ef (patch)
tree956dab6e4109348df6bd0e09ca4e6f1091e2b3d3
parent534691bdd58a5d6f1bb922374adb9c33b04e82c0 (diff)
Emacs: Use company
-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))