;;;; Personal Information manager (ish) ;; Should probably localize this by computer. (setq calendar-latitude 37.0625) (setq calendar-longitude -95.67707) (setq calendar-location-name "Timonium, MD") ;; Have diary mode notify me of any appointments. (display-time) (add-hook 'diary-hook 'appt-make-list) (diary 0) (require 'planner) (planner-calendar-insinuate) ;; org-mode (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (provide 'pmg-pim)