diff --git a/early-init.el b/early-init.el index a7ee4ccbd..224213d9a 100644 --- a/early-init.el +++ b/early-init.el @@ -10,7 +10,7 @@ ;; loaded, but after `early-init-file'. Doom handles package initialization, so ;; we must prevent Emacs from doing it early! (setq package-enable-at-startup nil) -(fset #'package--ensure-init-file #'ignore) +(fset #'package--ensure-init-file #'ignore) ; DEPRECATED Removed in 28 ;; Prevent the glimpse of un-styled Emacs by disabling these UI elements early. (push '(menu-bar-lines . 0) default-frame-alist) diff --git a/modules/completion/company/config.el b/modules/completion/company/config.el index 4d9ccf267..3033b886f 100644 --- a/modules/completion/company/config.el +++ b/modules/completion/company/config.el @@ -9,8 +9,9 @@ company-tooltip-align-annotations t company-require-match 'never company-global-modes '(not erc-mode message-mode help-mode gud-mode) - company-frontends '(company-pseudo-tooltip-frontend - company-echo-metadata-frontend) + company-frontends + '(company-pseudo-tooltip-frontend ; always show candidates in overlay tooltip + company-echo-metadata-frontend) ; show selected candidate docs in echo area ;; Buffer-local backends will be computed when loading a major mode, so ;; only specify a global default here.