Emacs: Enable caching for company-lsp.

This commit is contained in:
tastytea 2020-02-26 04:49:31 +01:00
parent a994cd867e
commit c530a916fb
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
;;; lsp.el --- Language Server Protocol. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-02-11T17:58:36+0100>
;; Time-stamp: <2020-02-26T04:48:29+0100>
;;; Commentary:
@ -64,9 +64,8 @@
;; Completions with lsp-mode.
(use-package company-lsp
:after (lsp-mode company)
:config
(push 'company-lsp company-backends)
:custom (company-lsp-cache-candidates 'auto)
:config (push 'company-lsp company-backends)
)
;; ivy interface to lsp-mode.