aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/init.el
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-08-20 00:13:16 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-08-20 00:13:16 +0100
commit1e071228beec831a75a55516b8326223c5af197a (patch)
tree44d44cd3afcca632c859177eea4db087081072a7 /Emacs/.config/emacs/init.el
parentb6ef43590e14501f365ae2e14c5d4d2893516360 (diff)
downloaddotfiles-1e071228beec831a75a55516b8326223c5af197a.tar.gz
dotfiles-1e071228beec831a75a55516b8326223c5af197a.tar.bz2
dotfiles-1e071228beec831a75a55516b8326223c5af197a.zip
Bunch of stuff, who caresHEADmaster
Diffstat (limited to 'Emacs/.config/emacs/init.el')
-rw-r--r--Emacs/.config/emacs/init.el6
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