2016-10-29 16:36:44 +02:00
|
|
|
#+TITLE: Company mode configuration
|
|
|
|
|
2016-12-31 20:04:56 +01:00
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(require 'company)
|
|
|
|
(require 'diminish)
|
|
|
|
#+END_SRC
|
|
|
|
|
2016-10-29 16:36:44 +02:00
|
|
|
Don't show that company mode is enabled in the minibuffer.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(diminish 'company-mode)
|
|
|
|
#+END_SRC
|
2017-03-31 05:04:29 +02:00
|
|
|
|
|
|
|
Show a tooltip when there is more than one completion, show the
|
|
|
|
documentation for a symbol in the echo area and always show a preview.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq company-frontends
|
|
|
|
'(company-pseudo-tooltip-unless-just-one-frontend
|
|
|
|
company-echo-metadata-frontend
|
|
|
|
company-preview-frontend))
|
|
|
|
#+END_SRC
|