summary refs log tree commit diff stats
path: root/emacs/.emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2019-03-21 16:36:23 +0100
committerAlan Pearce2019-03-21 16:36:23 +0100
commit605e40ec198bdd85d179170245ebe7ee1d3f2094 (patch)
tree2f5ac830840abaec0c0877a52e53fa2678f53b8e /emacs/.emacs.d
parenta8147adecaf242d794edc5bdfc71619283090a37 (diff)
downloaddotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.tar.lz
dotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.tar.zst
dotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.zip
Emacs: remove non-working LSP setup
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r--emacs/.emacs.d/main.el19
1 files changed, 0 insertions, 19 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index 17e40ef..204b83a 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -1640,25 +1640,6 @@ With two prefix arguments, write out the day and month name."
   :if (featurep 'helm-imenu)
   :bind ("C-x C-." . ivy-imenu-anywhere))
 
-;;;;; Language Server Protocol
-
-;; Enable smart language features by communicating with an outside application. Neat.
-
-(use-package lsp-mode
-  :commands lsp
-  :hook (js2-mode
-          typescript-mode))
-
-(use-package lsp-ui
-  :commands (lsp-ui-mode)
-  :config (add-hook 'lsp-after-open-hook #'lsp-enable-imenu))
-
-(use-package company-lsp
-  :after (company lsp-mode)
-  :config (progn
-            (add-to-list 'company-backends #'company-lsp)
-            (setq company-lsp-async nil)))
-
 ;;;;; Lisps
 
 ;;;;;; All