;;; init.el --- bootstrap Sean's Emacs configuration -*- no-byte-compile: t -*- ;;; 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