Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #+BEGIN_SRC emacs-lisp
  2. (require 'org)
  3. (require 'org-mac-iCal)
  4. (add-to-list 'org-modules 'org-mac-iCal)
  5. #+END_SRC
  6.  
  7. #+BEGIN_SRC emacs-lisp
  8. (setq org-agenda-include-diary t)
  9. #+END_SRC
  10.  
  11. #+BEGIN_SRC emacs-lisp
  12. (setq org-agenda-custom-commands
  13. '(("I" "Import diary from iCal" agenda ""
  14. ((org-agenda-mode-hook
  15. (lambda ()
  16. (org-mac-iCal)))))))
  17. #+END_SRC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement