1
0

add company use-package declaration

This commit is contained in:
zdm 2021-02-08 02:56:27 -07:00
parent b27f7922fc
commit 8bcd2ff68b

10
init.el
View File

@ -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