diff --git a/config.org b/config.org index c902ed4..ccde97b 100644 --- a/config.org +++ b/config.org @@ -276,6 +276,24 @@ Counsel for Projectile :init (global-company-mode 1)) #+END_SRC + +Configuration : +#+BEGIN_SRC emacs-lisp + + ; No delay in showing suggestions. + (setq company-idle-delay 0) + + ; Show suggestions after entering one character. + (setq company-minimum-prefix-length 1) + + ; Wrap around when suggestions reach bottom. + (setq company-selection-wrap-around t) + + ; Use tab key to cycle through suggestions. + ; ('tng' means 'tab and go') + (company-tng-configure-default) + +#+END_SRC **** Company Quickhelp #+BEGIN_SRC emacs-lisp (use-package company-quickhelp