doomemacs/modules/app/calendar
Henrik Lissner e77a45bc22
docs: use lowercase keywords
As per Org's new defaults, which we're adopting elsewhere, so may as
well adopt it here.
2022-08-02 16:23:43 +02:00
..
autoload.el app/calendar: fix edge case with +calendar/quit 2021-03-06 00:10:55 -05:00
config.el app/calendar: remove non-existent autoload 2021-06-07 21:06:17 -04:00
packages.el bump: :app :checkers :config :emacs :term :tools :ui 2021-09-15 17:47:17 +02:00
README.org docs: use lowercase keywords 2022-08-02 16:23:43 +02:00

:app calendar

Back to module index ! Issues ↖ Github ± Suggest edits ? Help


Description   unfold

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

Maintainers

This module has no dedicated maintainers. Become a maintainer?

Module flags

This module has no flags.

Hacks

No hacks documented for this module.

TODO Changelog

This module does not have a changelog yet.

Installation

Enable this module in your doom! block.

This module requires:

TODO Usage

🔨 This module has no usage documentation yet. Write some?

TODO Configuration

🔨 This module's configuration documentation is incomplete. Complete it?

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.

Troubleshooting

There are no known problems with this module. Report one?

Frequently asked questions

This module has no FAQs yet. Ask one?

TODO Appendix

🔨 This module has no appendix yet. Write one?