├── .dir-locals.el └── README.org /.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil 2 | (git-commit-major-mode . git-commit-elisp-text-mode) 3 | (fill-column . 80)) 4 | (doom-docs-org-mode 5 | (doom-docs-repo "https://git.doomemacs.org/modules") 6 | (doom-docs-menus 7 | ("/README\\.org$" 8 | (left ("← Back: core" . "doomemacs:core"))) 9 | ("/[^/]+/README\\.org$" 10 | (left ("← Back: module index" . "file:../README.org"))) 11 | ("/\\([^/]+\\)/\\([^/]+\\)/README\\.org$" 12 | (left ("← Back: module index" . "file:../../README.org") 13 | ("↑ Up: \\1" . "file:../README.org")) 14 | (right ("↖ History" . "github-commits:./") 15 | ("! Issues" . "github-label:module:\\1/\\2")))))) 16 | -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- 1 | #+title: Doom Emacs - Official Modules 2 | #+subtitle: The repository for Doom Emacs' official modules 3 | 4 | In the future, this repository will hold Doom's official module library (Doom's 5 | starter kit). Modules here are carefully curated for support with Doom core (and 6 | each other) by Doom's author and core maintainers. Users will be able to pull it 7 | in from their ~doom!~ blocks. 8 | 9 | For now, it is simply a placeholder. 10 | --------------------------------------------------------------------------------