Update feeds, GDScript and small org-fc tweak

This commit is contained in:
2025-04-16 12:15:10 +09:00
parent c34b7252e4
commit a556aca1f9
5 changed files with 62 additions and 5 deletions

View File

@@ -2,8 +2,13 @@
(use-package org
:ensure nil
:defer t
:commands (org-mode))
:defer nil
:commands (org-mode)
:bind (:map org-mode-map
("C-c c" . org-fc-cloze-dwim)))
(setq org-format-latex-options (plist-put org-format-latex-options ':scale 2.0))
(use-package org-roam
:ensure t
:defer t
@@ -34,4 +39,17 @@
`(("s" "Slipbox" entry (file "~/data2/Notes/inbox.org")
"* %?\n")))
(use-package org-fc
:straight (org-fc
:type git
:host nil
:repo "https://git.sr.ht/~l3kn/org-fc"
:branch "main"
:files (:defaults "awk" "demo.org"))
:after org
:ensure t
:defer nil
:custom
(org-fc-directories '("~/data2/Notes/")))
;;; 07-org.el ends here