From 680e3b0873c1bbfaef23353c379dd2004a39c1fa Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Sun, 19 May 2024 09:31:24 -0700 Subject: [PATCH] Including my RPGTK project --- ha-aux-apps.org | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ha-aux-apps.org b/ha-aux-apps.org index a77d5b0..11d11f1 100644 --- a/ha-aux-apps.org +++ b/ha-aux-apps.org @@ -171,6 +171,24 @@ Been working on my [[https://gitlab.com/howardabrams/emacs-rpgdm][RPG DM project :config (ha-leader "t D" '("rpg dm" . rpgdm-mode)))) #+end_src +Working on my new replacement of my DM code: +#+begin_src emacs-lisp + (when (f-directory? "~/other/emacs-rpgtk") + (use-package rpgtk + :straight (:local-repo "~/other/emacs-rpgtk" + :files ("rpgtk.el" "rpgtk-dice.el" + "rpgtk-messages.el" "rpgtk-odds.el" "rpgtk-tables.el")) + ;; :commands (rpgtk-mode rpgtk-tables-load rpgtk-dice rpgtk-message) + :custom + (rpgtk-tables-directory "~/other/emacs-rpgtk/tables") + + :config + (ha-leader + "t D" '("rpg dm" . rpgtk-mode) + "a d" '("rpg dm" . hydra-rpgtk/body)))) +#+end_src + + And my [[https://gitlab.com/howardabrams/emacs-ironsworn][new Ironsworn project]] expands on it, giving me both the Oracles and the Moves. With an Org file, I can easily play Solo: #+begin_src emacs-lisp (when (f-directory? "~/other/emacs-ironsworn")