summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-12 17:20:49 -0600
committerCase Duckworth2021-03-12 17:20:49 -0600
commitc918211dcd9cb0d8c8cb30274c9b81004e6d8315 (patch)
tree4430225d5cccf4c8d685f8af4e0a52bdf63ccd39 /init.el
parentReturn a value from `acdw/set' (diff)
downloademacs-c918211dcd9cb0d8c8cb30274c9b81004e6d8315.tar.gz
emacs-c918211dcd9cb0d8c8cb30274c9b81004e6d8315.zip
Configure `org-mode'.
Diffstat (limited to 'init.el')
-rw-r--r--init.el25
1 files changed, 25 insertions, 0 deletions
diff --git a/init.el b/init.el index 3466c12..849cd24 100644 --- a/init.el +++ b/init.el
@@ -369,6 +369,31 @@
369(acdw/set `((eshell-directory-name ,(acdw/in-dir "eshell/" t)) 369(acdw/set `((eshell-directory-name ,(acdw/in-dir "eshell/" t))
370 (eshell-aliases-file ,(acdw/in-dir "eshell/aliases" t)))) 370 (eshell-aliases-file ,(acdw/in-dir "eshell/aliases" t))))
371 371
372;;; Org-mode
373(acdw/pkg (org
374 :repo "https://code.orgmode.org/bzg/org-mode.git")
375 :now ((require 'acdw-org))
376 :set `((org-directory "~/org")
377 (org-hide-emphasis-markers t)
378 (org-fontify-whole-heading-line t)
379 (org-fontify-done-headline t)
380 (org-fontify-quote-and-verse-blocks t)
381 (org-src-fontify-natively t)
382 (org-pretty-entities t)
383 (org-tags-column ,(- 0 fill-column -3))
384 (org-src-tab-acts-natively t)
385 (org-src-window-setup current-window)
386 (org-confirm-babel-evaluate nil)
387 (org-adapt-indentation nil)
388 (org-catch-invisible-edits smart)
389 (org-special-ctrl-a/e t)
390 (org-special-ctrl-k t)
391 (org-imenu-depth 3)
392 (org-export-headline-levels 8)
393 (org-export-with-smart-quotes t)
394 (org-export-with-sub-superscripts t))
395 :hooks ((before-save-hook acdw/hook--org-mode-fix-blank-lines)))
396
372;;; Programming languages 397;;; Programming languages
373 398
374;; Emacs lisp 399;; Emacs lisp