diff options
| author | Thomas Schneider <qsx@qsx.re> | 2019-04-03 22:57:33 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@qsx.re> | 2019-04-03 22:57:33 +0200 |
| commit | b8afd50fe7868a94e440b5464179d2171d6c87ef (patch) | |
| tree | 956dab6e4109348df6bd0e09ca4e6f1091e2b3d3 /dot.emacs.d/init.el | |
| parent | 534691bdd58a5d6f1bb922374adb9c33b04e82c0 (diff) | |
Emacs: Use company
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 6 |
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)) |
