diff --git a/config.org b/config.org index 118314f..9b972c6 100644 --- a/config.org +++ b/config.org @@ -2127,10 +2127,17 @@ Forge is a convenient package for working with remote code forges like GitHub, G (push '("git.tokinanpa.dev" "git.tokinanpa.dev/api/v1" "git.tokinanpa.dev" - forge-forgejo-repository) + forge-gitea-repository) forge-alist)) #+end_src +#+begin_src emacs-lisp :tangle packages.el +(package! glab) +(package! gtea) +(package! gogs) +(package! buck) +#+end_src + ** Marginalia #+call: confpkg("Pkg: marginalia") @@ -2838,21 +2845,19 @@ Org mode offers a useful tag hierarchy system, configured via ~org-tag-alist~. W "An alist where the car is the name of a class subject (typically four capitalized letters), and the cdr is a list of sub-tags.") -(defvar classes-inperson '() - "Classes that have at least one in-person lecture, and thus -belong under the :inperson: tag.") +(defvar classes-mwf '() + "Classes that belong under the :MWF: tag.") +(defvar classes-tr '() + "Classes that belong under the :TR: tag.") (defvar classes-online '() - "Classes that are entirely online, and thus belong under -the :online: tag.") + "Classes that belong under the :Online: tag.") (after! org - (setq classes-inperson '(("CS3502" . ?1) ("STAT2332" . ?2) - ("CS4306" . ?3) ("ENGL1102" . ?4)) - classes-online '() - subject-alist '(("MATH" ("calculus") ("algebra")) - ("HIST") ("POLS") ("ECON") ("PHIL") - ("CS" ("programming")) - ("CSE") ("ART") ("AMST"))) + (setq classes-mwf '(("PHIL2010" . ?1) ("CSE1322" . ?2)) + classes-tr '(("MATH2345" . ?3) ("CSE1322L" . ?4)) + classes-online '() + subject-alist '(("MATH" ("calculus") ("algebra")) + ("HIST") ("POLS") ("ECON") ("PHIL"))) (setq org-tag-persistent-alist `(("area" . ?A) ("goal" . ?G) ("project" . ?P) ("meta" . ?M) @@ -2870,12 +2875,15 @@ the :online: tag.") subject-alist) (:startgroup) ("college") - (:grouptags) ("inperson") ("online") (:endgroup) + (:grouptags) ("TR") ("MWF") ("Online") (:endgroup) - (:startgroup) ("inperson") - (:grouptags) ,@classes-inperson (:endgroup) + (:startgroup) ("MWF") + (:grouptags) ,@classes-mwf (:endgroup) - (:startgroup) ("online") + (:startgroup) ("TR") + (:grouptags) ,@classes-tr (:endgroup) + + (:startgroup) ("Online") (:grouptags) ,@classes-online (:endgroup)))) #+end_src