diff options
| author | Craig Jennings <c@cjennings.net> | 2024-10-22 18:55:01 +0000 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-10-22 18:55:01 +0000 |
| commit | 496789b252dd9ed74f044bfde75a101fde064017 (patch) | |
| tree | 7fc58396debd2fcd07d2dc82258ff7c8e3aec741 /modules | |
| parent | 20a0e72578df8ef4d1db9d3497e525008ce36430 (diff) | |
| download | dotemacs-496789b252dd9ed74f044bfde75a101fde064017.tar.gz dotemacs-496789b252dd9ed74f044bfde75a101fde064017.zip | |
capitalizing directories
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/user-constants.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el index 11872474..8e6c3b1c 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/") @@ -55,7 +55,7 @@ (defconst snippets-dir (concat sync-dir "snippets/") "The location of ya-snippet snippets.") -(defconst video-recordings-dir "~/videos/recordings" +(defconst video-recordings-dir "~/Videos/recordings" "The location to save the ffmpeg recordings.") |
