From 1d280a54bb1deae60ca32576ed057ea84e7cf940 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 14 Aug 2024 06:07:49 -0400 Subject: [PATCH] style: hide lengthy boilerplate source block --- config.org | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 30ad5f3..85611be 100644 --- a/config.org +++ b/config.org @@ -761,11 +761,19 @@ NODE defaults to the root node." One of Doom Emacs's most useful features is its modular configuration system, allowing configuration code to be sectioned into modules that can be enabled or customized individually. Doom provides a full suite of prewritten modules to enable. -#+begin_src emacs-lisp :tangle init.el :noweb no-export +#+begin_src emacs-lisp :eval no ;;; init.el -*- lexical-binding: t; -*- ;; This file controls what Doom modules are enabled and what order they load in. +(doom! + ... + ) +#+end_src + +#+begin_src emacs-lisp :tangle init.el :exports none +;;; init.el -*- lexical-binding: t; -*- + (doom! <> <>