diff options
author | Alan Pearce | 2019-07-09 19:38:53 +0200 |
---|---|---|
committer | Alan Pearce | 2019-07-09 19:38:53 +0200 |
commit | 2f9066fc67955e4f643c200bf19bafbc44fec4e9 (patch) | |
tree | 5344ef900b2684a6e863fcaa57d5dd04dcd78661 /emacs | |
parent | 6e3d04de11fe1f2139a2a5ffb5ae234cf7f9d1af (diff) | |
download | dotfiles-2f9066fc67955e4f643c200bf19bafbc44fec4e9.tar.lz dotfiles-2f9066fc67955e4f643c200bf19bafbc44fec4e9.tar.zst dotfiles-2f9066fc67955e4f643c200bf19bafbc44fec4e9.zip |
Emacs: remove company-lsp
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/main.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index a9a9b7a..1b8d077 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -323,13 +323,10 @@ With two prefix arguments, write out the day and month name." (use-package all-the-icons) (use-package company-tabnine - :after (company-lsp) :commands (company-tabnine) :general ("<M-tab>" #'company-tabnine-call-other-backends "<C-tab>" #'company-tabnine-call-other-backends) :config (progn - (if (fboundp #'company-lsp) - (add-to-list 'company-backends #'company-lsp)) (add-to-list 'company-backends #'company-tabnine))) ;;; Documentation @@ -515,8 +512,6 @@ With two prefix arguments, write out the day and month name." (use-package flymake-diagnostic-at-point :ghook '(flymake-mode-hook)) -(use-package company-lsp - :commands (company-lsp)) (use-package lsp-mode :ghook ('(typescript-mode-hook js-mode-hook |