Adding org-caldav
This commit is contained in:
parent
eca1391ce0
commit
f5739b42a5
12
README.org
12
README.org
|
@ -1742,6 +1742,18 @@ Here we setup an easy way to use ical as a source for calendar views.
|
||||||
|
|
||||||
** Org-Caldav-sync
|
** Org-Caldav-sync
|
||||||
I'd like to sync my org-files to caldav and hopefully use more native android apps to manage tasks and reminders.
|
I'd like to sync my org-files to caldav and hopefully use more native android apps to manage tasks and reminders.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package org-caldav
|
||||||
|
:after org
|
||||||
|
:config
|
||||||
|
(setq org-caldav-url "https://staff.tfcconnection.org/remote.php/dav/calendars/chris"
|
||||||
|
org-caldav-calendar-id "org"
|
||||||
|
org-caldav-inbox "/home/chris/org/todo/inbox.org"
|
||||||
|
org-caldav-files '("/home/chris/org/todo/todo.org"
|
||||||
|
"/home/chris/org/todo/notes.org"
|
||||||
|
"/home/chris/org/todo/prayer.org")
|
||||||
|
org-icalendar-alarm-time 15))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Magit
|
** Magit
|
||||||
Use magit, because why wouldn't you? duh!
|
Use magit, because why wouldn't you? duh!
|
||||||
|
|
11
init.el
11
init.el
|
@ -1282,6 +1282,17 @@ If on a:
|
||||||
(use-package calfw-ical
|
(use-package calfw-ical
|
||||||
:after calfw)
|
:after calfw)
|
||||||
|
|
||||||
|
(use-package org-caldav
|
||||||
|
:after org
|
||||||
|
:config
|
||||||
|
(setq org-caldav-url "https://staff.tfcconnection.org/remote.php/dav/calendars/chris"
|
||||||
|
org-caldav-calendar-id "org"
|
||||||
|
org-caldav-inbox "/home/chris/org/todo/inbox.org"
|
||||||
|
org-caldav-files '("/home/chris/org/todo/todo.org"
|
||||||
|
"/home/chris/org/todo/notes.org"
|
||||||
|
"/home/chris/org/todo/prayer.org")
|
||||||
|
org-icalendar-alarm-time 15))
|
||||||
|
|
||||||
(use-package magit
|
(use-package magit
|
||||||
:commands (magit-status magit-get-current-branch)
|
:commands (magit-status magit-get-current-branch)
|
||||||
:general
|
:general
|
||||||
|
|
Loading…
Reference in a new issue