aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bard-elisp/bard-writing.el11
-rw-r--r--config.org14
2 files changed, 12 insertions, 13 deletions
diff --git a/bard-elisp/bard-writing.el b/bard-elisp/bard-writing.el
index 5437b33..2ba5a6e 100644
--- a/bard-elisp/bard-writing.el
+++ b/bard-elisp/bard-writing.el
@@ -40,12 +40,11 @@
(consult-grep "~/Notes/denote"))
(defvar bard/class-dirs
- '(("ANTH 204" . "~/Documents/Uni/FALL2025-ANTH 204/")
- ("CHEM 201" . "~/Documents/Uni/FALL2025-CHEM 201/")
- ("CHEM 207" . "~/Documents/Uni/FALL2025-CHEM 207/")
- ("ENGL 105" . "~/Documents/Uni/FALL2025-ENGL 105/")
- ("ENGR 101" . "~/Documents/Uni/FALL2025-ENGR 101/")
- ("ENGR 110" . "~/Documents/Uni/FALL2025-ENGR 110/"))
+ '(("CSE 130 " . "~/Documents/Uni/SPRING2026-CSE 130/")
+ ("CSE 310 " . "~/Documents/Uni/SPRING2026-CSE 310/")
+ ("ENGR 111" . "~/Documents/Uni/SPRING2026-ENGR 111/")
+ ("MATH 206" . "~/Documents/Uni/SPRING2026-MATH 206/")
+ ("PHYS 298" . "~/Documents/Uni/SPRING2026-PHYS 298/"))
"Mapping of class names to their document directories.")
(defvar bard/uni-notes-file "~/Notes/denote/uni.org"
diff --git a/config.org b/config.org
index f02513e..dc81437 100644
--- a/config.org
+++ b/config.org
@@ -1285,7 +1285,8 @@ For a long time I really struggled with Emacs tab completion. It still only kind
:bind
(("C-c c" . org-capture))
:config
- (setq org-goto-interface 'outline-path-completion)
+ (setq org-goto-interface 'outline-path-completion
+ org-outline-path-complete-in-steps nil)
(setq org-special-ctrl-a/e t)
(setq safe-local-variable-values '((org-refile-targets (nil :maxlevel . 3)))))
#+end_src
@@ -4230,12 +4231,11 @@ This is what the tabs look like with ~doom-gruvbox~ theme:
*** University Class jumping in ~uni.org~ file
#+begin_src emacs-lisp :tangle bard-elisp/bard-writing.el :mkdirp yes
(defvar bard/class-dirs
- '(("ANTH 204" . "~/Documents/Uni/FALL2025-ANTH 204/")
- ("CHEM 201" . "~/Documents/Uni/FALL2025-CHEM 201/")
- ("CHEM 207" . "~/Documents/Uni/FALL2025-CHEM 207/")
- ("ENGL 105" . "~/Documents/Uni/FALL2025-ENGL 105/")
- ("ENGR 101" . "~/Documents/Uni/FALL2025-ENGR 101/")
- ("ENGR 110" . "~/Documents/Uni/FALL2025-ENGR 110/"))
+ '(("CSE 130 " . "~/Documents/Uni/SPRING2026-CSE 130/")
+ ("CSE 310 " . "~/Documents/Uni/SPRING2026-CSE 310/")
+ ("ENGR 111" . "~/Documents/Uni/SPRING2026-ENGR 111/")
+ ("MATH 206" . "~/Documents/Uni/SPRING2026-MATH 206/")
+ ("PHYS 298" . "~/Documents/Uni/SPRING2026-PHYS 298/"))
"Mapping of class names to their document directories.")
(defvar bard/uni-notes-file "~/Notes/denote/uni.org"