;;; init.el --- bootstrap Sean's Emacs configuration -*- no-byte-compile: t -*- ;;; Commentary: ;; This file is not bytecompiled primarily because when it is loaded ;; `load-prefer-newer' has not yet been set. Most personal config ;; should go into one of the bytecompiled files inside ~/.emacs.d ;; rather than here. ;;; Code: ;; don't accept invalid SSL certs or small primes (with-eval-after-load 'gnutls (setq gnutls-verify-error t gnutls-min-prime-bits 1024)) (with-eval-after-load 'nsm (setq network-security-level 'paranoid)) ;; seems to be needed to make HTTPS connections on Debian buster (at least) (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") (setq load-prefer-newer t) (when (< emacs-major-version 27) (package-initialize)) (load (concat user-emacs-directory "init-spw")) ;;; init.el ends here