doomemacs/modules/lang/org
Henrik Lissner 2b98e550e8
Reverse load-path to fix precedence issues
Originally, I built the load-path with site-lisp paths first, then
packages. There was a modest ~10% startup boost doing this, because
there were considerably more site packages loaded at startup than
plugins.

However, this meant built-in packages would get precedence over plugins,
which is undesirable. In org's case, I simply modified the load-path
in lang/org/init.el. However, this issue has cropped up again in #340.

Evidently, that 10% boost may not be worth the risk it imposes, so I've
rearranged the load-path with packages first.
2018-01-10 22:47:35 -05:00
..
autoload General minor refactor & comment revision 2018-01-06 03:03:02 -05:00
test lang/org: fix unit test 2018-01-06 04:15:40 -05:00
+attach.el lang/org: general refactor; split init into hooks 2018-01-08 20:41:56 -05:00
+babel.el lang/org: general refactor; split init into hooks 2018-01-08 20:41:56 -05:00
+capture.el lang/org: general refactor; split init into hooks 2018-01-08 20:41:56 -05:00
+export.el lang/org: general refactor; split init into hooks 2018-01-08 20:41:56 -05:00
+present.el lang/org: general refactor; split init into hooks 2018-01-08 20:41:56 -05:00
config.el lang/org: close agenda buffers after org-agenda 2018-01-08 20:42:43 -05:00
packages.el Add org elpa archive + update lang/org #327 2018-01-04 16:16:45 -05:00
README.org lang/org: add baseline readme 2017-12-31 00:44:57 -05:00

:lang org

This module provides support for org-mode.

  • A custom attachment system that keeps files in a centralized location.
  • Drag-and-drop support for images (with inline preview) and media files (drops a file icon and a short link).
  • Executable code blocks with support for a variety of languages and tools, including REST requests, SQL, google translate, plantuml, and matlab.
  • An org-capture workflow that works from outside Emacs (through the bin/org-capture shell script).
  • Exported documents are saved to a centralized location.
  • A configuration for using org-mode for slide-show presentations, or exporting org files to reveal.js slideshows.
  • (TODO) A static site generator based in org-mode and Emacs.

org-mode is a beast, and Doom's most difficult module to maintain. And its most important. This module is highly opinionated and experimental; my foray into learning org is a neverending quest.

Table of Contents   TOC

Install

Org has no hard dependencies, but there are some things you'll need to make use of Org's more esoteric features.

  • For inline LaTeX previews, you need latex and dvipng.
  • To run babel code blocks, you need whatever dependencies those languages need. It is recommended you enable the associated module in lang/ and ensure its dependencies are met.
  • The +crm module uses a sqlite database to manage your contacts, invoices, and projects; this needs sqlite installed.

MacOS

brew cask install mactex
brew install sqlite

Arch Linux

sudo pacman --needed --noconfirm -S texlive-core texlive-bin texlive-science sqlite

Configuration

(Coming soon)

Usage

(Coming soon)

Appendix

(Coming soon)