diff options
author | Alan Pearce | 2019-03-21 16:36:23 +0100 |
---|---|---|
committer | Alan Pearce | 2019-03-21 16:36:23 +0100 |
commit | 605e40ec198bdd85d179170245ebe7ee1d3f2094 (patch) | |
tree | 2f5ac830840abaec0c0877a52e53fa2678f53b8e | |
parent | a8147adecaf242d794edc5bdfc71619283090a37 (diff) | |
download | dotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.tar.lz dotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.tar.zst dotfiles-605e40ec198bdd85d179170245ebe7ee1d3f2094.zip |
Emacs: remove non-working LSP setup
-rw-r--r-- | emacs/.emacs.d/main.el | 19 |
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 |