From 7af3f70c00e0a4bfc6fb26279391c9dfbafa11ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille1.fr> Date: Tue, 28 Sep 2021 16:02:45 +0200 Subject: [PATCH] Fix for emacs26 --- configuration.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/configuration.org b/configuration.org index 927fcaf..25ac0fc 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 -- GitLab