diff options
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 |