Dan's Brain

Ricing up Org Mode


Author: lepisma Source: https://lepisma.xyz/2017/10/28/ricing-org-mode/index.html Tags: Emacs, Typography

  • Look inspired by the style used by Edwand Tufte in his books

  • the config is here

  • variable-pitch

    • EtBembo
      • serif
  • org-indent

    • (:inherit (org-hide fixed-pitch))
    • alligment of text under Org heading in a non-monospace font
  • padding

    • line-spacing
    • header-line
    • left-margin-width
    • right-margin-width

(lambda () (progn (setq left-margin-width 2) (setq right-margin-width 2) (set-window-buffer nil (current-buffer))))

  • tweaks

    (setq org-startup-indented t org-bullets-bullet-list ‘(" “) ;; no bullets, needs org-bullets package org-ellipsis "  " ;; folding symbol org-pretty-entities t org-hide-emphasis-markers t ;; show actually italicized text instead of italicized text org-agenda-block-separator "” org-fontify-whole-heading-line t org-fontify-done-headline t org-fontify-quote-and-verse-blocks t)