emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit f8fda1992c45a744d64f657d40ed196da5e4ee53
parent d8785dc4d934e2a5b58bcf8711f9fe07828bc6e9
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sun, 31 Mar 2019 13:11:59 -0400

Let lsp-mode handle adding the backends.

Diffstat:
MREADME.org | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/README.org b/README.org
@@ -583,12 +583,10 @@ Auto complete for =go=. This relies on =gocode= to be installed using =go get=. 
 #+END_SRC
 
 **** =company-lsp=
-Company completion via =company-lsp=.
+Company completion via =company-lsp=. =lsp-mode= will add the appropriate backend.
 #+BEGIN_SRC emacs-lisp
   (use-package company-lsp
-    :ensure t
-    :init
-    (add-to-list 'company-backends 'company-lsp))
+    :ensure t)
 #+END_SRC
 
 **** =company-yasnippet=