Skip to content

Instantly share code, notes, and snippets.

@jcowgar
Created December 26, 2019 16:28
Show Gist options
  • Save jcowgar/ed354a231bc3d445de823f7676b072d6 to your computer and use it in GitHub Desktop.
Save jcowgar/ed354a231bc3d445de823f7676b072d6 to your computer and use it in GitHub Desktop.
(cond
((string= system-type "windows-nt")
(setq org-directory "C:/Users/jerem/Dropbox (Personal)/orgfiles"))
(t
(setq org-directory "~/Dropbox (Personal)/orgfiles")))
(setq org-agenda-files (apply 'append
(mapcar
(lambda (directory)
(directory-files-recursively
directory org-agenda-file-regexp))
'(org-directory))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment