diff options
| author | Craig Jennings <c@cjennings.net> | 2026-03-02 19:46:38 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-03-02 19:46:38 -0600 |
| commit | 120e48ba5073da5ac47517cb6f4e336cd0f73ff6 (patch) | |
| tree | 9466491d58d44ed64545de57c7bb88f1bd534583 /modules/org-export-config.el | |
| parent | c16f668afb6ac32da6150f282f83caeb4304f949 (diff) | |
| download | dotemacs-120e48ba5073da5ac47517cb6f4e336cd0f73ff6.tar.gz dotemacs-120e48ba5073da5ac47517cb6f4e336cd0f73ff6.zip | |
feat(json,yaml): add tree-sitter modes, formatting, and jq integration
New prog-json module: json-ts-mode with jq formatting (C-; f) and
jq-interactively (C-c C-q). Upgraded prog-yaml to yaml-ts-mode with
prettier formatting. Both use treesit-auto for grammar management.
Includes 18 new tests (10 JSON, 8 YAML), 185/185 passing.
Diffstat (limited to 'modules/org-export-config.el')
| -rw-r--r-- | modules/org-export-config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/org-export-config.el b/modules/org-export-config.el index 4451eddda..688d8f99c 100644 --- a/modules/org-export-config.el +++ b/modules/org-export-config.el @@ -49,7 +49,7 @@ (setq org-export-with-tasks '("TODO")) ;; export with tasks by default (setq org-export-with-tasks nil) ;; export WITHOUT tasks by default (setq org-export-with-toc t) ;; export WITH table of contents by default - (setq org-export-initial-scope 'subtree) ;; 'buffer is your other choice + (setq org-export-initial-scope 'buffer) ;; 'subtree is your other choice (setq org-export-with-author nil)) ;; export without author by default (use-package ox-html |
