Compare commits

...

2 Commits

Author SHA1 Message Date
423e200458 defer ob-csharp 2025-06-13 19:24:27 +02:00
5721e18608 increased gc threashold during startup 2025-06-13 19:18:20 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -8,7 +8,7 @@
;; A big contributor to startup times is garbage collection. We up the gc
;; threshold to temporarily prevent it from running, then reset it later by
;; enabling `gcmh-mode'. Not resetting it will cause stuttering/freezes.
(setq gc-cons-threshold (* 100 1024 1024)) ;; Make startup faster by reducing the frequency of garbage collection. The default is 800 kilobytes. Measured in bytes. Will (and should) be decreased again at the end.
(setq gc-cons-threshold (* 200 1024 1024)) ;; Make startup faster by reducing the frequency of garbage collection. The default is 800 kilobytes. Measured in bytes. Will (and should) be decreased again at the end.
;; make UTF-8 the default coding system:
(set-language-environment "UTF-8")

View File

@@ -688,6 +688,7 @@ Updating an old preamble.org should remove this warning."))
:after (org))
(use-package ob-csharp
:defer t
:after (org-contrib))
(use-package ob-ditaa