diff options
author | EuAndreh <eu@euandre.org> | 2018-06-18 21:44:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-06-18 21:44:32 -0300 |
commit | 73985d777142941bcdccc33ad187cfa456dcd6ce (patch) | |
tree | c671952341e17427a998e5f3a8c74b703303c989 | |
parent | autojump hack (diff) | |
download | dotfiles-73985d777142941bcdccc33ad187cfa456dcd6ce.tar.gz dotfiles-73985d777142941bcdccc33ad187cfa456dcd6ce.tar.xz |
Add fix for macOS TLS Emacs error
-rw-r--r-- | spacemacs.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spacemacs.el b/spacemacs.el index 30ec670..70113be 100644 --- a/spacemacs.el +++ b/spacemacs.el @@ -2,6 +2,11 @@ ;; This file is loaded by Spacemacs at startup. ;; It must be stored in your home directory. +;; macOS TLS error, fix from: +;; https://blog.vifortech.com/posts/emacs-tls-fix/ +(require 'gnutls) +(add-to-list 'gnutls-trustfiles "/usr/local/etc/openssl/cert.pem") + (defun dotspacemacs/layers () "Layer configuration: This function should only modify configuration layer settings." |