diff options
author | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-01-11 16:15:53 -0700 |
---|---|---|
committer | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-01-11 16:15:53 -0700 |
commit | 8dfd51bbc1728dfb003daea031c8ec236abbe120 (patch) | |
tree | cfdd2e0128629b4b67796d7a4bac4e9d4b0cff02 /mixins/org.el | |
parent | 61504d92179f5f1940b25667a644d1f6fbc24838 (diff) |
Write up draft on what org-mode can do
Diffstat (limited to 'mixins/org.el')
-rw-r--r-- | mixins/org.el | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/mixins/org.el b/mixins/org.el index 9966f04..1f708a0 100644 --- a/mixins/org.el +++ b/mixins/org.el @@ -10,6 +10,12 @@ ;;; ;;; We will configure Org-mode in phases. Work with each phase as you are ;;; comfortable. +;;; +;;; YOU NEED TO CONFIGURE SOME VARIABLES! The most important variable is the +;;; `org-directory', which tells org-mode where to look to find your agenda +;;; files. + +;;; See "org-intro.txt" for a high-level overview. ;;; Contents: ;;; @@ -32,12 +38,6 @@ ;;; Phase 1 variables -;; Advanced: Custom link types -;; This example is for linking a person's 7-character ID to their page on the -;; free genealogy website Family Search. -(setq org-link-abbrev-alist - '(("family_search" . "https://www.familysearch.org/tree/person/details/%s"))) - ;;; Phase 2 variables ;; Agenda variables @@ -75,6 +75,14 @@ (setq org-roam-directory "~/Documents/org-roam/") (setq org-roam-index-file "~/Documents/org-roam/index.org") +;;; Optional variables + +;; Advanced: Custom link types +;; This example is for linking a person's 7-character ID to their page on the +;; free genealogy website Family Search. +(setq org-link-abbrev-alist + '(("family_search" . "https://www.familysearch.org/tree/person/details/%s"))) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Phase 1: editing and exporting files |