2025-07-20 22:51:50 +08:00
|
|
|
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
2025-10-19 21:54:29 +08:00
|
|
|
;; Load modular configuration files
|
|
|
|
|
(load! "security")
|
|
|
|
|
(load! "core")
|
|
|
|
|
(load! "development")
|
|
|
|
|
(load! "org")
|
|
|
|
|
(load! "ai")
|
2025-11-22 13:52:03 +08:00
|
|
|
|
|
|
|
|
;; Performance tweaks
|
|
|
|
|
(setq gc-cons-threshold 100000000 ; Increase GC threshold to 100MB
|
|
|
|
|
gc-cons-percentage 0.6)
|
|
|
|
|
(run-with-idle-timer 5 t #'garbage-collect)
|