diff options
author | David Runge <dave@sleepmap.de> | 2015-03-11 17:12:33 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2015-03-11 17:12:33 +0100 |
commit | 38e2adaa54ca6e5a08184822eabc738894a73fce (patch) | |
tree | 4a3e5929ba95a5b772562446e58f8b63831cbd28 /.vdirsyncer | |
parent | 48450296bb0bb71ac7e8b78b729df51001b057cf (diff) | |
download | dotfiles-38e2adaa54ca6e5a08184822eabc738894a73fce.tar.gz dotfiles-38e2adaa54ca6e5a08184822eabc738894a73fce.tar.bz2 dotfiles-38e2adaa54ca6e5a08184822eabc738894a73fce.tar.xz dotfiles-38e2adaa54ca6e5a08184822eabc738894a73fce.zip |
.vdirsyncer/config: Encapsulating paths with ~ in double quotes, as vdirsyncer creates a weird ~ folder in your home otherwise.
Diffstat (limited to '.vdirsyncer')
-rw-r--r-- | .vdirsyncer/config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.vdirsyncer/config b/.vdirsyncer/config index e8ec980..7f04a07 100644 --- a/.vdirsyncer/config +++ b/.vdirsyncer/config @@ -4,7 +4,7 @@ # http://vdirsyncer.readthedocs.org/ for the rest of them. [general] # A folder where vdirsyncer can store some metadata about each pair. -status_path = ~/.vdirsyncer/status/ +status_path = "~/.vdirsyncer/status/" password_command = pass2vdirsyncer # CARDDAV @@ -36,7 +36,7 @@ conflict_resolution = "b wins" # A storage references actual data on a remote server or on the local disk. # Similar to repositories in OfflineIMAP. type = filesystem -path = ~/.contacts/ +path = "~/.contacts/" fileext = .vcf [storage dave_contacts_remote] @@ -60,7 +60,7 @@ b = dave_calendar_remote collections = ["contact_birthdays", "private", "unix-pool", "courses", "live", "concerts", "d228"] [storage dave_calendar_local] type = filesystem -path = ~/.calendars/ +path = "~/.calendars/" fileext = .ics [storage dave_calendar_remote] type = caldav |