doomemacs/modules/app/calendar
Max Schlueter 87d0fff2fd
Example doesn't work in general
For example, when the calendar view is refreshed.
Use cfw:org-create-file-source when wanting to show org files from other sources.
2020-07-30 09:07:44 +02:00
..
autoload.el
config.el Add cfw:org-create-file-source to list of commands 2020-07-30 09:07:43 +02:00
packages.el Add calfw-cal dependency to allow local cal source 2020-07-29 22:01:19 +02:00
README.org Example doesn't work in general 2020-07-30 09:07:44 +02:00

app/calendar

Description

This module adds a calendar view for Emacs, with org and google calendar sync support.

Module Flags

This module provides no flags.

Configuration

Changing calendar sources

By defining your own calendar commands, you can control what sources to pull calendar data from:

(defun my-open-calendar ()
  (interactive)
  (cfw:open-calendar-buffer
   :contents-sources
   (list
    (cfw:org-create-source "Green")  ; org-agenda source
    (cfw:org-create-file-source "cal" "/path/to/cal.org" "Cyan")  ; other org source
    (cfw:howm-create-source "Blue")  ; howm source
    (cfw:cal-create-source "Orange") ; diary source
    (cfw:ical-create-source "Moon" "~/moon.ics" "Gray")  ; ICS source1
    (cfw:ical-create-source "gcal" "https://..../basic.ics" "IndianRed") ; google calendar ICS
   )))

The kiwanami/emacs-calfw project readme contains more examples.

Synchronizing Org and Google Calendar

The kidd/org-gcal.el project README contains more detailed instructions on how to link your calendar with Google calendars.