summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/keybindings.el5
-rw-r--r--modules/user-constants.el2
2 files changed, 4 insertions, 3 deletions
diff --git a/modules/keybindings.el b/modules/keybindings.el
index 288ba7e2..ccfd83cb 100644
--- a/modules/keybindings.el
+++ b/modules/keybindings.el
@@ -21,7 +21,6 @@
;; is undefined' message. Finally, I'm providing messages to train me to use
;; faster keybindings and provide feedback when evaluating buffers.
-
;;; Code:
@@ -101,7 +100,9 @@
(define-key jump-to-keymap (kbd "$")
#'(lambda () (interactive) (find-file ledger-file)))
(define-key jump-to-keymap (kbd "m")
- #'(lambda () (interactive) (find-file macros-file)))
+ #'(lambda () (interactive) (find-file macros-file)))
+(define-key jump-to-keymap (kbd "n")
+ #'(lambda () (interactive) (find-file reading-notes-file)))
(define-key jump-to-keymap (kbd "I")
#'(lambda () (interactive) (find-file emacs-init-file)))
diff --git a/modules/user-constants.el b/modules/user-constants.el
index e71a5ae9..a00a293e 100644
--- a/modules/user-constants.el
+++ b/modules/user-constants.el
@@ -75,7 +75,7 @@
(defvar inbox-file (concat roam-dir "inbox.org")
"The location of the org file that serves as the task inbox.")
;
-(defvar reading-notes-file (concat roam-dir "reading-notes.org")
+(defvar reading-notes-file (concat roam-dir "20250830141440-reading_notes.org")
"The default notes file for org-noter.")
;; ------------------------- Verify Or Create Functions ------------------------