Browse Source

Improve company-lsp performance

main
parent
commit
9b0b73116f
  1. 4
      modules/projects.org

4
modules/projects.org

@ -61,11 +61,13 @@ Text completion via *Company*[fn:10] =AKA= *Complete Anything*.
Integrate with *Lsp mode*[fn:5] to provide completion candidates through the *Language Server Protocol*[fn:4]. Integrate with *Lsp mode*[fn:5] to provide completion candidates through the *Language Server Protocol*[fn:4].
+ Specify the repository + Specify the repository
+ Use asynchronous completion
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package company-lsp (use-package company-lsp
:after (lsp company) :after (lsp company)
:custom (company-backend 'company-lsp)
:custom (company-lsp-async t)
(company-backend 'company-lsp)
:straight (company-lsp :type git :straight (company-lsp :type git
:host github :host github
:repo "tigersoldier/company-lsp")) :repo "tigersoldier/company-lsp"))

Loading…
Cancel
Save