This is the org-mode bits of
~/.emacs
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
; Clean View
(setq org-startup-indented 1)
; Org buffers only
(add-hook 'org-mode-hook 'turn-on-font-lock)
(setq org-directory "~/Dropbox/Notes/Org")
(setq org-mobile-directory "~/Dropbox/MobileOrg")
(setq org-mobile-inbox-for-pull "~/Dropbox/Notes/Org/flagged.org")
(setq org-agenda-files (list
(concat org-directory "/AAAA.org") ; work project 'AAAA' notes
(concat org-directory "/pnotes.org") ; personal
(concat org-directory "/home.org") ; home
(concat org-directory "/meetings.org") ; reoccurring and one off
(concat org-directory "/notes2012.org") ; bulk of work notes
(concat org-directory "/notes2011.org") ; remove later
))
(setq inhibit-startup-screen t)
(put 'downcase-region 'disabled nil)
(put 'erase-buffer 'disabled nil)
For historical purposes my mini-talk from last year on orgmode at our LUG can be found here in the original org file I presented from manchlug-orgmode.org or view the generated webpage manchlug-orgmode.html