summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-30 16:15:27 -0500
committerCraig Jennings <c@cjennings.net>2025-08-30 16:15:27 -0500
commit8cde74f43b0985f1f6c3b0f2004eee239bf72440 (patch)
treeefd581bc03ab5b91573102ba3b11e6ad737d4623 /modules
parent1aa05f0dc25421ae4f2e0c3edb106c6ebf91ff22 (diff)
downloaddotemacs-8cde74f43b0985f1f6c3b0f2004eee239bf72440.tar.gz
dotemacs-8cde74f43b0985f1f6c3b0f2004eee239bf72440.zip
removing unused variables
Diffstat (limited to 'modules')
-rw-r--r--modules/user-constants.el21
1 files changed, 8 insertions, 13 deletions
diff --git a/modules/user-constants.el b/modules/user-constants.el
index f0fec620..e71a5ae9 100644
--- a/modules/user-constants.el
+++ b/modules/user-constants.el
@@ -60,26 +60,23 @@
;; FILES
+(defvar authinfo-file (concat user-home-dir "/.authinfo.gpg")
+ "The location of the encrypted .authinfo or .netrc file.")
+
(defvar schedule-file (concat sync-dir "schedule.org")
"The location of the org file containing scheduled events.")
-(defvar inbox-file (concat roam-dir "inbox.org")
- "The location of the org file that serves as the task inbox.")
-
-(defvar contacts-file (concat sync-dir "contacts.org")
- "The location of the org file containing org-contacts information.")
-
(defvar reference-file (concat sync-dir "reference.org")
"The location of the org file containing reference information.")
-(defvar article-file (concat sync-dir "article-inbox.org")
- "The location of the org file containing new clipped pages to review.")
-
(defvar article-archive (concat sync-dir "article-archive.org")
"The location of the org file that stores saved articples to keep.")
+
+(defvar inbox-file (concat roam-dir "inbox.org")
+ "The location of the org file that serves as the task inbox.")
;
-(defvar authinfo-file (concat user-home-dir "/.authinfo.gpg")
- "The location of the encrypted .authinfo or .netrc file.")
+(defvar reading-notes-file (concat roam-dir "reading-notes.org")
+ "The default notes file for org-noter.")
;; ------------------------- Verify Or Create Functions ------------------------
@@ -105,8 +102,6 @@
(mapc 'cj/verify-or-create-file (list schedule-file
inbox-file
- contacts-file
- article-file
article-archive))
(provide 'user-constants)