emacs - add org init file
[dotfiles.git] / emacs.d / elisp / init-org.el
1
2
3 ;; http://doc.norang.ca/org-mode.html  Org Mode - Organize Your Life In Plain Text!
4
5 (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode))
6 (require 'org)
7
8 (global-set-key "\C-cl" 'org-store-link)
9 (global-set-key "\C-ca" 'org-agenda)
10 (global-set-key "\C-cb" 'org-iswitchb)
11
12
13 (provide 'init-org)