14 lines
336 B
EmacsLisp
14 lines
336 B
EmacsLisp
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Load modular configuration files
|
|
(load! "security")
|
|
(load! "core")
|
|
(load! "development")
|
|
(load! "org")
|
|
(load! "ai")
|
|
|
|
;; 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)
|