diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 00:13:16 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-08-20 00:13:16 +0100 |
commit | 1e071228beec831a75a55516b8326223c5af197a (patch) | |
tree | 44d44cd3afcca632c859177eea4db087081072a7 /Emacs/.config/emacs/init.el | |
parent | b6ef43590e14501f365ae2e14c5d4d2893516360 (diff) | |
download | dotfiles-1e071228beec831a75a55516b8326223c5af197a.tar.gz dotfiles-1e071228beec831a75a55516b8326223c5af197a.tar.bz2 dotfiles-1e071228beec831a75a55516b8326223c5af197a.zip |
Diffstat (limited to 'Emacs/.config/emacs/init.el')
-rw-r--r-- | Emacs/.config/emacs/init.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/init.el b/Emacs/.config/emacs/init.el index 2bae99c..9bffb17 100644 --- a/Emacs/.config/emacs/init.el +++ b/Emacs/.config/emacs/init.el @@ -89,14 +89,16 @@ (require 'eshell) (require 'eglot)) +(require 'gnutls) +(add-to-list 'gnutls-trustfiles "/usr/local/etc/openssl/cert.pem") + (setq gc-cons-threshold (* 100 1024 1024) ; ~100MiB gc-cons-percentage 0.1 ; 10% of heap allocation => collect garbage read-process-output-max (* 5 1024 1024) ; ~5MiB ;; FIXME: Problem with memory-report after running Emacs for a ;; bit, causes a Lisp nesting error, so I just set it up really ;; high so it doesn't reach that. - max-lisp-eval-depth 999999 - garbage-collection-messages t) + max-lisp-eval-depth 999999) (provide 'init) ;;; init.el ends here |