From 9fbc82fd78eb5ee49421dd204cf6c2411417b38f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 4 Aug 2020 15:21:59 -0500 Subject: [PATCH] Fix TLS emacs 26.x --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index ec99116..7f37a5f 100644 --- a/init.el +++ b/init.el @@ -12,6 +12,9 @@ (setq package-check-signature 'allow-unsigned) +;;; Fix TLS emacs 26.x +(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") + ;;; Welcome message (setq-default initial-scratch-message (concat ";; Happy hacking, " user-login-name " - Emacs loves you!\n\n"))