diff options
| author | Craig Jennings <c@cjennings.net> | 2024-11-08 22:13:12 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-11-08 22:13:12 -0600 |
| commit | 132fc97b94d37b600a4ea7e88e624fc5264134ae (patch) | |
| tree | 57943b4ccba93e507c131ff8c221a888ebdd657c /modules | |
| parent | 496789b252dd9ed74f044bfde75a101fde064017 (diff) | |
| download | dotemacs-132fc97b94d37b600a4ea7e88e624fc5264134ae.tar.gz dotemacs-132fc97b94d37b600a4ea7e88e624fc5264134ae.zip | |
lowercasing directory names
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/user-constants.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el index 8e6c3b1c..9cb17899 100644 --- a/modules/user-constants.el +++ b/modules/user-constants.el @@ -19,28 +19,28 @@ (defconst user-home-dir (getenv "HOME") "The user's home directory per the environment variable.") -(defconst books-dir (concat user-home-dir "/Sync/books/") +(defconst books-dir (concat user-home-dir "/sync/books/") "The location of org-roam files.") -(defconst code-dir (concat user-home-dir "/Code/") +(defconst code-dir (concat user-home-dir "/code/") "Code repositories are located in this directory.") -(defconst dl-dir (concat user-home-dir "/Downloads/") +(defconst dl-dir (concat user-home-dir "/downloads/") "Location of the general downloads directory.") -(defconst pix-dir (concat user-home-dir "/Pictures/") +(defconst pix-dir (concat user-home-dir "/pictures/") "Location of where pictures and images are stored.") -(defconst projects-dir (concat user-home-dir "/Projects/") +(defconst projects-dir (concat user-home-dir "/projects/") "Non-code projects and repositories are located in this directory.") -(defconst videos-dir (concat user-home-dir "/Videos/") +(defconst videos-dir (concat user-home-dir "/videos/") "Location of where videos are stored.") (defconst mail-dir (concat user-home-dir ".mail/") "Root directory where the mail folders are located.") -(defconst sync-dir (concat user-home-dir "/Sync/org/") +(defconst sync-dir (concat user-home-dir "/sync/org/") "This directory is synchronized across machines.") (defconst roam-dir (concat sync-dir "roam/") |
