diff --git a/configuration.org b/configuration.org
index 5157a58c879f7c8268176b0ef58f39c8b814c5e3..00d1d28dc13106e376a8aafc29da44468656f869 100644
--- a/configuration.org
+++ b/configuration.org
@@ -711,7 +711,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 
@@ -740,19 +741,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
@@ -860,12 +860,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
 
@@ -935,7 +929,6 @@ For dockerfiles and docker-compose files, install some docker packages
 (use-package docker)
 (use-package docker-api)
 (use-package docker-cli)
-(use-package docker-tramp)
 #+end_src
 
 *** Web