style: hide lengthy boilerplate source block
This commit is contained in:
parent
49c120614a
commit
1d280a54bb
10
config.org
10
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! <<doom-input>>
|
||||
|
||||
<<doom-completion>>
|
||||
|
|
Loading…
Reference in a new issue