Add Org mode video links and setup org-agenda
This commit is contained in:
parent
5fc502826b
commit
1c4259a618
48
README.org
48
README.org
@ -2192,7 +2192,12 @@ configuration objectives:
|
|||||||
:END:
|
:END:
|
||||||
|
|
||||||
The [[https://org-babel.readthedocs.io/en/latest/][Org Babel reference card]] complements section [[info:org#Working with Source Code][Working with Source Code (info)]]
|
The [[https://org-babel.readthedocs.io/en/latest/][Org Babel reference card]] complements section [[info:org#Working with Source Code][Working with Source Code (info)]]
|
||||||
of the [[info:org#Top][Org (info)]] manual.
|
of the [[info:org#Top][Org (info)]] manual. Here are links to Org-mode videos:
|
||||||
|
1. [[yt:o6rE18Mxu9U][Analyze Your Time with Org Mode Clocktables]]
|
||||||
|
2. [[yt:EgOBBiomfGo][Basic Task Management with Org: Checklists, TODOs, and Org-Agenda]]
|
||||||
|
3. [[yt:oJTwQvgfgMM][Emacs Org-mode: a system for note-taking and project planning]]
|
||||||
|
4. [[yt:SzA2YODtgK4][Getting Started With Org Mode]]
|
||||||
|
5. [[yt:zqAYHWv36X0][Org Mode Time and Task Tools]]
|
||||||
|
|
||||||
*** [[info:org#Activation][Org activation (info)]]
|
*** [[info:org#Activation][Org activation (info)]]
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
@ -2216,7 +2221,7 @@ of the [[info:org#Top][Org (info)]] manual.
|
|||||||
:CUSTOM_ID: sec:setup-org
|
:CUSTOM_ID: sec:setup-org
|
||||||
:END:
|
:END:
|
||||||
|
|
||||||
I have split the initial [[https://orgmode.org/][Org-mode]] setup over thirteen listings. Here, follows a
|
I have split the initial [[https://orgmode.org/][Org-mode]] setup over fourteen listings. Here, follows a
|
||||||
list detailing and motivating each listing:
|
list detailing and motivating each listing:
|
||||||
1. Listing [[lst:set-org-options]] handles basic [[https://orgmode.org/][Org-mode]] options.
|
1. Listing [[lst:set-org-options]] handles basic [[https://orgmode.org/][Org-mode]] options.
|
||||||
2. Listing [[lst:undo-org-ctags]] undoes ~org-ctags~. See [[https://list.orgmode.org/87mt43agk6.fsf@localhost/][org-ctags land grab]] for
|
2. Listing [[lst:undo-org-ctags]] undoes ~org-ctags~. See [[https://list.orgmode.org/87mt43agk6.fsf@localhost/][org-ctags land grab]] for
|
||||||
@ -2252,25 +2257,26 @@ list detailing and motivating each listing:
|
|||||||
#+begin_src emacs-lisp -n :results silent
|
#+begin_src emacs-lisp -n :results silent
|
||||||
(with-eval-after-load 'org
|
(with-eval-after-load 'org
|
||||||
(setopt
|
(setopt
|
||||||
org-babel-load-languages
|
org-agenda-files '("gerard.org")
|
||||||
`((calc . t)
|
org-agenda-include-diary t
|
||||||
(dot . ,(fboundp 'grapviz-dot-mode))
|
org-babel-load-languages `((calc . t)
|
||||||
(emacs-lisp . t)
|
(dot . ,(fboundp 'grapviz-dot-mode))
|
||||||
(eshell . t)
|
(emacs-lisp . t)
|
||||||
(fortran . t)
|
(eshell . t)
|
||||||
(gnuplot . ,(fboundp 'gnuplot-mode))
|
(fortran . t)
|
||||||
(julia . t)
|
(gnuplot . ,(fboundp 'gnuplot-mode))
|
||||||
(latex . t)
|
(julia . t)
|
||||||
(lilypond . ,(fboundp 'lilypond-mode))
|
(latex . t)
|
||||||
(lisp . t)
|
(lilypond . ,(fboundp 'lilypond-mode))
|
||||||
(lua . ,(fboundp 'lua-mode))
|
(lisp . t)
|
||||||
(org . t)
|
(lua . ,(fboundp 'lua-mode))
|
||||||
(perl . t)
|
(org . t)
|
||||||
;; Beware of circular Python dependencies.
|
(perl . t)
|
||||||
(python . t)
|
;; Beware of circular Python dependencies.
|
||||||
(ruby . ,(fboundp 'ruby-mode))
|
(python . t)
|
||||||
(shell . t))
|
(ruby . ,(fboundp 'ruby-mode))
|
||||||
;; Removal of `svg4css' from `org-export-backends' to silence warnings.
|
(shell . t))
|
||||||
|
org-directory "~/org"
|
||||||
org-export-backends '(ascii beamer html icalendar latex md odt texinfo)
|
org-export-backends '(ascii beamer html icalendar latex md odt texinfo)
|
||||||
org-file-apps '((auto-mode . emacs)
|
org-file-apps '((auto-mode . emacs)
|
||||||
(directory . emacs)
|
(directory . emacs)
|
||||||
|
Loading…
Reference in New Issue
Block a user