diff options
author | Jesús <heckyel@hyperbola.info> | 2020-08-04 15:21:59 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-08-04 15:21:59 -0500 |
commit | 9fbc82fd78eb5ee49421dd204cf6c2411417b38f (patch) | |
tree | d9fe81ecc493f68906f77f0476d867578acb096c | |
parent | 7733624f8d16c665439b6c67c52b5cca81f77fde (diff) | |
download | emacs-personal-9fbc82fd78eb5ee49421dd204cf6c2411417b38f.tar.lz emacs-personal-9fbc82fd78eb5ee49421dd204cf6c2411417b38f.tar.xz emacs-personal-9fbc82fd78eb5ee49421dd204cf6c2411417b38f.zip |
Fix TLS emacs 26.x
-rw-r--r-- | init.el | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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")) |