]> git.vanrenterghem.biz Git - Dotty.git/blobdiff - emacs/.emacs.d/init.el
Support global company-mode.
[Dotty.git] / emacs / .emacs.d / init.el
index ddb78c4f31983253f79376063bb04d811ca16f1c..bc2dd2b3b8f3d5104c2998653f0281c183f284bf 100644 (file)
@@ -56,6 +56,8 @@ vc-follow-symlinks t
 ;; enable autocomplete
 (use-package company
   :ensure t
+  :demand t ;; Needed to ensure global company-mode works.
+  :commands company-mode
   :bind(:map company-active-map
              ("<return>" . nil)
              ("RET" . nil)
@@ -153,6 +155,7 @@ vc-follow-symlinks t
     '(("\\.mdwn\\'" . markdown-mode)
       ("\\.md\\'" . markdown-mode)
       ("\\.yarn\\'" . markdown-mode)
+      ("\\.cpp\\'" . c++-mode)
       ("\\.js\\'" . js-mode)
       ("\\.json\\'" . js-mode)
       ("Makefile" . makefile-mode)