diff --git a/configuration.org b/configuration.org
index 904af774baaa88dc64ff2e8663222919d0695157..2dd3a01685beb7329b235ccb2f320c44fc20b489 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