diff --git a/.emacs.d/init.el b/.emacs.d/init.el index d041835..cf99cb1 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -555,6 +555,14 @@ (require 'go-autocomplete) (require 'auto-complete-config))) +;; ================================================================= +;; Org-Mode +;; ================================================================= +(require 'org) +(define-key global-map "\C-cl" 'org-store-link) +(define-key global-map "\C-ca" 'org-agenda) +(setq org-log-done t) + ;; ================================================================= ;; No idea why custom-set-faces is way down here, but OK. I must ;; have been thinking of something. @@ -565,3 +573,4 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) +