diff --git a/configuration.org b/configuration.org
index 927fcaf75a637f97b524730448249a912bbbdb23..25ac0fc5212551558013da8b2e61947273e12634 100644
--- a/configuration.org
+++ b/configuration.org
@@ -51,6 +51,16 @@ Some of my configuration entries where borrowed from other people, see
 
   I use [[https://elpa.gnu.org][Elpa]], [[https://melpa.org][Melpa]] and [[http://orgmode.org][Org mode]] packages repository, thus I need to add them to the =package-archives= list
 
+  For older emacs version, fix some gnutls algorithm priority
+
+  #+BEGIN_SRC emacs-lisp
+(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
+  #+END_SRC
+
+  #+RESULTS:
+  : NORMAL:-VERS-TLS1.3
+
+
   #+BEGIN_SRC emacs-lisp
 (require 'package)
 (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t)
@@ -59,6 +69,8 @@ Some of my configuration entries where borrowed from other people, see
 (package-initialize)
   #+END_SRC
 
+  #+RESULTS:
+
 
   Then, to ensure that packages are installed and that I can launch
   Emacs on a new computer and have it setup automatically, I use
@@ -701,6 +713,8 @@ Some of my configuration entries where borrowed from other people, see
   :custom
   (company-minimum-prefix-length 3)
   (company-idle-delay 0.1)
+  (company-show-quick-access "off")  
+  (company-quick-access-hint-function (lambda (param) " unknown"))
   )
   #+end_src