Org mode getting started

Post date: Feb 20, 2016 12:5:30 PM

from source   https://vimeo.com/16533939  

http://orgmode.org/worg/org-tutorials/orgtutorial_dto.html

examples http://ehneilsen.net/notebook/orgExamples/org-examples.html

download and configure .emacs (C:\Users\User\AppData\Roaming\.emacs) with following content.

;org mode

(add-to-list 'load-path "O:\org-latest\org-mode\lisp")

(add-to-list 'load-path "O:\org-latest\org-mode\contrib\lisp")

(require 'org)

(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))

(add-hook 'org-mode-hook 'turn-on-font-lock)

(global-set-key "\C-cl" 'org-store-link)

(global-set-key "\C-ca" 'org-agenda)

(setq org-log-done t)

(global-set-key "\C-cc" 'org-capture)

(global-set-key "\C-cb" 'org-iswitchb)

often used commands: 

C-c C-o for org-open-at-point

C-c l to call org-store-link

C-c C-l to call org-insert-link

shift-TAB

C-c a t to enter the global todo list

C-c C-s to run org-schedule

C-c a a for org-agenda