about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-17 23:01:42 -0500
committerCase Duckworth2021-04-17 23:01:42 -0500
commitc864c0d4d73f27c71ab78d0c83f196f37185233e (patch)
tree1498b65a4444d9b0ecb7f3264faca2179db7cbce /init.el
parentset lexical-binding by default (diff)
downloademacs-c864c0d4d73f27c71ab78d0c83f196f37185233e.tar.gz
emacs-c864c0d4d73f27c71ab78d0c83f196f37185233e.zip
Re-organize org settings
Diffstat (limited to 'init.el')
-rw-r--r--init.el36
1 files changed, 19 insertions, 17 deletions
diff --git a/init.el b/init.el index e9cfe82..8bdc2c4 100644 --- a/init.el +++ b/init.el
@@ -359,28 +359,30 @@
359(setup (:straight (org :host nil 359(setup (:straight (org :host nil
360 :repo "https://code.orgmode.org/bzg/org-mode.git")) 360 :repo "https://code.orgmode.org/bzg/org-mode.git"))
361 (require 'acdw-org) 361 (require 'acdw-org)
362 (:option org-directory "~/org" 362 (:option org-adapt-indentation nil
363 org-hide-emphasis-markers t
364 org-fontify-whole-heading-line t
365 org-fontify-done-headline t
366 org-fontify-quote-and-verse-blocks t
367 org-src-fontify-natively t
368 org-pretty-entities t
369 org-tags-column (- 0 fill-column -3)
370 org-src-tab-acts-natively t
371 org-src-window-setup 'current-window
372 org-confirm-babel-evaluate nil
373 org-adapt-indentation nil
374 org-catch-invisible-edits 'smart 363 org-catch-invisible-edits 'smart
375 org-special-ctrl-a/e t 364 org-confirm-babel-evaluate nil
376 org-special-ctrl-k t 365 org-export-coding-system 'utf-8-unix
377 org-imenu-depth 3
378 org-export-headline-levels 8 366 org-export-headline-levels 8
367 org-export-with-section-numbers nil
379 org-export-with-smart-quotes t 368 org-export-with-smart-quotes t
380 org-export-with-sub-superscripts t 369 org-export-with-sub-superscripts t
381 org-export-coding-system 'utf-8-unix 370 org-export-with-toc nil
371 org-fontify-done-headline t
372 org-fontify-quote-and-verse-blocks t
373 org-fontify-whole-heading-line t
374 org-hide-emphasis-markers t
382 org-html-coding-system 'utf-8-unix 375 org-html-coding-system 'utf-8-unix
383 org-startup-truncated nil) 376 org-imenu-depth 3
377 org-pretty-entities t
378 org-special-ctrl-a/e t
379 org-special-ctrl-k t
380 org-src-fontify-natively t
381 org-src-tab-acts-natively t
382 org-src-window-setup 'current-window
383 org-startup-truncated nil
384 org-tags-column (- 0 fill-column -3)
385 org-directory "~/org")
384 (:bind "RET" unpackaged/org-return-dwim) 386 (:bind "RET" unpackaged/org-return-dwim)
385 (add-hook 'before-save-hook #'acdw/hook--org-mode-fix-blank-lines) 387 (add-hook 'before-save-hook #'acdw/hook--org-mode-fix-blank-lines)
386 (advice-add 'org-delete-backward-char :override #'acdw-org/delete-backward-char)) 388 (advice-add 'org-delete-backward-char :override #'acdw-org/delete-backward-char))