From 8bcd2ff68bf3b2fd1401286209a0096a37719bb9 Mon Sep 17 00:00:00 2001 From: zdm Date: Mon, 8 Feb 2021 02:56:27 -0700 Subject: [PATCH] add company use-package declaration --- init.el | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/init.el b/init.el index f3ecfc3..70f56c6 100644 --- a/init.el +++ b/init.el @@ -589,6 +589,16 @@ :config (which-key-mode)) +;;; Company + +(use-package company + :ensure t + :defer t + :hook + ((slime-mode lisp-mode) . company-mode) + :init + (setq company-idle-delay nil)) + ;;; Slime (use-package slime