diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-28 20:59:39 -0500 |
| commit | e9e5696bc95d34aad8eb561d7458ac21b06359b0 (patch) | |
| tree | a3a12c66a1774c3d8aa7f66aeadd5e004ecde8d7 /modules/user-constants.el | |
| parent | 95d3a96bf150b1349dd73479e2a117b1cf95c6bd (diff) | |
| download | dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.tar.gz dotemacs-e9e5696bc95d34aad8eb561d7458ac21b06359b0.zip | |
bug fixing, repo changes, etc.
- add font lock studio,
- don't disable Emacs native vc backend functions
- change elpa mirror location
- change default location for localrepo
- update packages
- add constant for journals directory and ensure it exists on launch
- move project file to org-roam
- add remote repository reset to scripts folder
Diffstat (limited to 'modules/user-constants.el')
| -rw-r--r-- | modules/user-constants.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el index 97cba1f4..56c0f2f9 100644 --- a/modules/user-constants.el +++ b/modules/user-constants.el @@ -46,6 +46,9 @@ (defconst roam-dir (concat sync-dir "roam/") "The location of org-roam files.") +(defconst journals-dir (concat roam-dir "journals/") + "The location of org-roam dailies or journals files.") + (defconst drill-dir (concat sync-dir "drill/") "The location of org-drill org files.") @@ -94,7 +97,8 @@ ;; ------------------------- Verify Or Create Constants ------------------------ (mapc 'cj/verify-or-create-dir (list sync-dir - roam-dir + roam-dir + journals-dir snippets-dir)) (mapc 'cj/verify-or-create-file (list schedule-file |
