From 75aac65f0729dd4dc10df6c0dbbd2139922a05ce Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Fri, 22 Oct 2021 16:12:30 -0400 Subject: [PATCH] Set `gnutls-algorithm-priority` to work around some ssl issues with melpa --- .emacs.d/init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0d39df1..b0d27d7 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -25,6 +25,7 @@ ;;; Packages ;;;; packaging related stuff +(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)