orgin updates

This commit is contained in:
Kyle Isom 2025-04-30 16:57:16 -07:00
parent 0c7e1212c3
commit 1251d2cbc3
2 changed files with 6 additions and 1 deletions

View File

@ -263,7 +263,7 @@ present on disk."
'(ellama-sessions-directory (cache-path "ellama-sessions")) '(ellama-sessions-directory (cache-path "ellama-sessions"))
'(global-font-lock-mode t) '(global-font-lock-mode t)
'(org-html-mathjax-template '(org-html-mathjax-template
"<script>\12 window.MathJax = {\12 loader: {load: ['[tex]/physics']},\12 tex: {\12 ams: {\12 multlineWidth: '%MULTLINEWIDTH'\12 },\12 packages: {'[+]': ['physics']},\12 tags: '%TAGS',\12 tagSide: '%TAGSIDE',\12 tagIndent: '%TAGINDENT'\12 },\12 chtml: {\12 scale: %SCALE,\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 svg: {\12 scale: %SCALE,\12 styles: {\12 color: \"#002266\",\12 },\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 output: {\12 font: '%FONT',\12 displayOverflow: '%OVERFLOW'\12 }\12 };\12</script>\12\12<script\12 id=\"MathJax-script\"\12 async\12 src=\"/s/mathjax.js\">\12</script>") "<script>\12 window.MathJax = {\12 loader: {load: ['[tex]/physics']},\12 tex: {\12 ams: {\12 multlineWidth: '%MULTLINEWIDTH'\12 },\12 packages: {'[+]': ['physics']},\12 tags: '%TAGS',\12 tagSide: '%TAGSIDE',\12 tagIndent: '%TAGINDENT'\12 },\12 chtml: {\12 scale: %SCALE,\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 svg: {\12 scale: %SCALE,\12 styles: {\12 color: \"#002266\",\12 },\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 output: {\12 font: '%FONT',\12 displayOverflow: '%OVERFLOW'\12 }\12 };\12</script>\12\12<script\12 id=\"MathJax-script\"\12 async\12 src=\"/static/mathjax.js\">\12</script>")
'(package-selected-packages nil)) '(package-selected-packages nil))
(custom-set-faces (custom-set-faces

5
org.el
View File

@ -48,6 +48,10 @@
(metacircular-publish-2) (metacircular-publish-2)
(metacircular-upload)) (metacircular-upload))
(defun visit-roam-index () (interactive)
(find-file
(localize-path "org/roam/index.org")))
(defun get-current-org-date-timestamp () (defun get-current-org-date-timestamp ()
(format-time-string (car org-time-stamp-formats) (current-time))) (format-time-string (car org-time-stamp-formats) (current-time)))
@ -91,6 +95,7 @@
("C-c n u" . metacircular-upload) ("C-c n u" . metacircular-upload)
("C-c n d" . metacircular-deploy-2) ("C-c n d" . metacircular-deploy-2)
("C-c n D" . metacircular-deploy) ("C-c n D" . metacircular-deploy)
("C-c n v" . visit-roam-index)
("C-c n w" . httpd-toggle-server)) ("C-c n w" . httpd-toggle-server))
:config :config
(setq org-roam-completion-everywhere t) (setq org-roam-completion-everywhere t)