Including my RPGTK project
This commit is contained in:
parent
d64f8d37cc
commit
680e3b0873
1 changed files with 18 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue