diff options
| author | Matthew Kosarek <matthew@matthewkosarek.xyz> | 2026-05-27 16:16:42 -0400 |
|---|---|---|
| committer | Matthew Kosarek <matthew@matthewkosarek.xyz> | 2026-05-27 16:16:42 -0400 |
| commit | 65d3f1b11be6552d45a5d47b3cee14dd2331b189 (patch) | |
| tree | 69e16e8053a035076edc666e4fb46da198404dc0 /lisp/org-custom.el | |
| parent | fe471dd7cb63757e52bf8856ee74b9567d9058a8 (diff) | |
bugfix: fixing initial install
Diffstat (limited to 'lisp/org-custom.el')
| -rw-r--r-- | lisp/org-custom.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/org-custom.el b/lisp/org-custom.el index a6c31c3..bbd2b64 100644 --- a/lisp/org-custom.el +++ b/lisp/org-custom.el @@ -56,6 +56,10 @@ (org-indent-mode 1) (visual-line-mode 1)) +(dolist (dir '("~/OrgRoam" "~/OrgRoam/daily")) + (unless (file-directory-p dir) + (make-directory (expand-file-name dir) t))) + (setq org-directory "~/OrgRoam") (setq org-agenda-files '("~/OrgRoam" "~/OrgRoam/daily")) |
