Emacs: fix company-mode initialisation
Alan Pearce alan@alanpearce.eu
Tue, 03 Dec 2019 13:37:56 +0100
1 files changed, 10 insertions(+), 9 deletions(-)
jump to
M user/emacs/.emacs.d/init.el → user/emacs/.emacs.d/init.el
@@ -428,15 +428,16 @@ (use-package company :defer 2 :commands (company-explicit-action-p) - :config (setq global-company-mode +1 - company-idle-delay 0 - company-tooltip-align-annotations t - company-show-numbers t - company-dabbrev-downcase nil - company-dabbrev-ignore-case nil - company-begin-commands '(self-insert-command) - company-auto-complete #'company-explicit-action-p - company-auto-complete-chars '(?\ ?\( ?\) ?.)) + :config (progn + (setq company-idle-delay 0 + company-tooltip-align-annotations t + company-show-numbers t + company-dabbrev-downcase nil + company-dabbrev-ignore-case nil + company-begin-commands '(self-insert-command) + company-auto-complete #'company-explicit-action-p + company-auto-complete-chars '(?\ ?\( ?\) ?.)) + (global-company-mode +1)) :general (:states 'insert "TAB" #'company-indent-or-complete-common))