diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2022-11-17 08:09:53 -0500 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2022-11-17 08:09:53 -0500 |
commit | a84954287fe4a9cc742aa82d6c399f9c038c7aae (patch) | |
tree | d793084d669d69f8901f13df3bf792450fcc6119 /lisp | |
parent | f953b5c010cea5167e3c945edd498e0404ded92d (diff) |
Company quick help mode
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/general.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/general.el b/lisp/general.el index 106e2c5..80096a1 100644 --- a/lisp/general.el +++ b/lisp/general.el @@ -235,6 +235,15 @@ ) ) +(use-package company-quickhelp + :ensure t + :defer t + :init (company-quickhelp-mode 1) + :config + (setq company-quickhelp-delay 0 + ) + ) + ;; Eglot (use-package eglot :custom |