dotfiles/emacs/.emacs.d/init/oni-company-init.org

566 B

Company mode configuration

  (require 'company)
  (require 'diminish)

Don't show that company mode is enabled in the minibuffer.

  (diminish 'company-mode)

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.

  (setq company-frontends
        '(company-pseudo-tooltip-unless-just-one-frontend
          company-echo-metadata-frontend
          company-preview-frontend))