doomemacs/modules/app/calendar
Henrik Lissner be7ac25a84
fix: file-name-concat paths instead of concat
Treat paths as paths, rather than strings. Removes the requirements that
doom-*-dir variables end in slash (though I'll continue doing so as a
convention). Also moves a lot of cache/data into the current profile's
cache/data directories. Shouldn't actually affect anything for folks not
using Doom's profile system (yet).

Fix: #8616
2025-12-30 22:59:10 -05:00
..
.doommodule feat: add .doommodule files 2024-09-14 20:47:39 -04:00
autoload.el fix(calendar): adapt to upstream refactor (part 2) 2025-12-07 18:01:05 -05:00
config.el fix: file-name-concat paths instead of concat 2025-12-30 22:59:10 -05:00
packages.el bump: :app 2025-12-01 01:14:54 -05:00
README.org fix(calendar): adapt to upstream refactor 2025-12-04 14:02:06 -05:00

:app calendar

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)
  (calfw-open-calendar-buffer
   :contents-sources
   (list
    (calfw-org-create-source "Green")  ; org-agenda source
    (calfw-org-create-file-source "cal" "/path/to/cal.org" "Cyan")  ; other org source
    (calfw-howm-create-source "Blue")  ; howm source
    (calfw-cal-create-source "Orange") ; diary source
    (calfw-ical-create-source "Moon" "~/moon.ics" "Gray")  ; ICS source1
    (calfw-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?