Commit c7e87e24d1f0
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