Commit c7e87e24d1f0

Vincent Demeester <vincent@sbr.pm>
2015-05-28 10:31:37
A little more company-mode configuration
1 parent e23be3d
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -1412,7 +1412,13 @@
        :ensure t
        :config
        (progn
-         (add-hook 'after-ini-hook 'global-company-mode)))
+         (add-hook 'after-ini-hook 'global-company-mode)
+         (setq company-tooltip-limit 20)                      ; bigger popup window
+         (setq company-idle-delay .3)                         ; decrease delay before autocompletion popup shows
+         (setq company-echo-delay 0)                          ; remove annoying blinking
+         (setq company-begin-commands '(self-insert-command)) ; start autocompletion only after typing
+         (use-package helm-company
+           :ensure t)))
    #+END_SRC
 
 ** deft