From 77e3fa2403a6492545b324bd993a606ed9cca1eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Mon, 31 Oct 2022 15:10:22 +0100 Subject: [PATCH] Remove references to no longer available packages company-lsp and flycheck-perl6 --- configuration.org | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/configuration.org b/configuration.org index 904af77..2dd3a01 100644 --- a/configuration.org +++ b/configuration.org @@ -709,7 +709,8 @@ all buffers. I also set =M-/= to trigger =company-complete= #+begin_src emacs-lisp (use-package company - :ensure company-lsp +;; Looks like company-lsp is no longer available +;; :ensure company-lsp :ensure company-box :ensure company-php :ensure company-web @@ -738,19 +739,18 @@ completing symbols in source code. :hook (company-mode . company-box-mode)) #+end_src -Now some backends I use. Mainly lsp, php and web -related. =company-lsp= is slow to start, so we force a defer loading -only when it's needed. +Now some backends I use. Mainly php and web +related. #+begin_src emacs-lisp (use-package company-php) (use-package company-web) -(use-package company-lsp - :defer t) +;; looks like company-lsp is no longer available +;;(use-package company-lsp +;; :defer t) #+end_src - * Code navigation ** Treemacs @@ -858,12 +858,6 @@ flycheck if available to show code diagnosis. (use-package flycheck) #+end_src -For languages that do not have LSP yet, we can add some flycheck extensions - -#+begin_src emacs-lisp -(use-package flycheck-perl6) -#+end_src - ** Language specific configuration -- GitLab