;;; games-config.el --- emacs games -*- lexical-binding: t; coding: utf-8; -*- ;; author Craig Jennings ;; ;;; Commentary: ;; ;; Configuration for games playable within Emacs. Available games include: ;; ;; - Malyon for playing interactive fiction and text adventures in Z-machine format ;; (stories directory: ~/sync/org/text.games/) ;; - 2048 number-tile puzzle game ;; ;; Access games by using use the games menu with Shift-Alt-G or use via ~M-x ~ ;; ;; The games menu is the easiest entry. "Shift-Alt-G" will get you there. Enjoy! ;; ;;; Code: ;; ----------------------------------- Malyon ---------------------------------- ;; text based adventure player (use-package malyon :defer 1 :config (setq malyon-stories-directory (concat org-dir "text.games/"))) ;; ------------------------------------ 2048 ----------------------------------- ;; combine numbered tiles to create the elusive number 2048. (use-package 2048-game :defer 1) (provide 'games-config) ;;; games-config.el ends here.