summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-15 10:24:52 -0500
committerCraig Jennings <c@cjennings.net>2025-08-15 10:24:52 -0500
commitecb3db068de801d4026c703a4df6b8c90bfef44b (patch)
tree0213718f0a977f2fb0f56e90227ee6631805f227 /modules
parentcbd122cb8dab31b9efe1a7863ee0230303e7fd02 (diff)
downloaddotemacs-ecb3db068de801d4026c703a4df6b8c90bfef44b.tar.gz
dotemacs-ecb3db068de801d4026c703a4df6b8c90bfef44b.zip
remove unused hydras; remove unused games
Diffstat (limited to 'modules')
-rw-r--r--modules/games-config.el40
-rw-r--r--modules/mail-config.el28
2 files changed, 34 insertions, 34 deletions
diff --git a/modules/games-config.el b/modules/games-config.el
index f7a3b652..7b25fb0c 100644
--- a/modules/games-config.el
+++ b/modules/games-config.el
@@ -9,15 +9,15 @@
;; --------------------------------- Games Menu --------------------------------
-(defhydra hydra-games (:color blue :hint nil)
- "\n"
- ("2" 2048-game "2048 : Combine the Numbered Tiles to get to 2048" :column "Game")
- ("c" chess "Chess : Play the 64 Squares and Checkmate the King" :column "Game")
- ("d" dunnet "Dunnet : Emacs' Built-n Text Adventure" :column "Game")
- ("g" gomoku "Gomoku : Tic Tac Toe, but Five in a Row" :column "Game")
- ("m" malyon "Malyon : The Text Adventure Player" :column "Game")
- ("t" tetris "Tetris : Combine falling blocks and score" :column "Game"))
-(global-set-key (kbd "M-G") 'hydra-games/body)
+;; (defhydra hydra-games (:color blue :hint nil)
+;; "\n"
+;; ("2" 2048-game "2048 : Combine the Numbered Tiles to get to 2048" :column "Game")
+;; ("c" chess "Chess : Play the 64 Squares and Checkmate the King" :column "Game")
+;; ("d" dunnet "Dunnet : Emacs' Built-n Text Adventure" :column "Game")
+;; ("g" gomoku "Gomoku : Tic Tac Toe, but Five in a Row" :column "Game")
+;; ("m" malyon "Malyon : The Text Adventure Player" :column "Game")
+;; ("t" tetris "Tetris : Combine falling blocks and score" :column "Game"))
+;; (global-set-key (kbd "M-G") 'hydra-games/body)
;; ----------------------------------- Malyon ----------------------------------
;; text based adventure player
@@ -34,17 +34,17 @@
;; ----------------------------------- Chess -----------------------------------
;; play the 64 squares and checkmate the opponent's king
-(use-package chess
- :defer 1
- :config
- (setq chess-default-display 'chess-images)
- (setq chess-images-directory
- (concat user-emacs-directory "assets/chess/pieces/xboard/"))
- (setq chess-images-dark-color "#779556")
- (setq chess-images-light-color "#EBECD0")
- (setq chess-images-default-size 100)
- (setq chess-full-name user-whole-name)
- (setq chess-default-engine 'chess-fruit))
+;; (use-package chess
+;; :defer 1
+;; :config
+;; (setq chess-default-display 'chess-images)
+;; (setq chess-images-directory
+;; (concat user-emacs-directory "assets/chess/pieces/xboard/"))
+;; (setq chess-images-dark-color "#779556")
+;; (setq chess-images-light-color "#EBECD0")
+;; (setq chess-images-default-size 100)
+;; (setq chess-full-name user-whole-name)
+;; (setq chess-default-engine 'chess-fruit))
;; Notes from source code
diff --git a/modules/mail-config.el b/modules/mail-config.el
index 64437155..122b18de 100644
--- a/modules/mail-config.el
+++ b/modules/mail-config.el
@@ -220,20 +220,20 @@ Prompts user for the action when executing."
(auto-fill-mode -1))
(add-hook 'mu4e-compose-mode-hook #'no-auto-fill)
-;; ----------------------------- Compose Mode Hydra ----------------------------
-;; WIP: menu available in compose mode
-
-(defhydra hydra-mu4e-compose (:color blue :timeout 10 :hint nil)
- "Compose Mode Menu\n\n"
- ("q" quit-window "Quit" :column "")
- ("a" mail-add-attachment "Add Attachment" :column "")
- ("r" message-new-line-and-reformat "Newline and Reformat" :column "")
- ("d" message-delete-not-region "Delete Outside Region" :column ""))
-
-(defun mu4e-compose-mode-hook-hydra-setup ()
- "Create hydra/menu keybinding when entering compose mode."
- (local-set-key (kbd "C-c ?") 'hydra-mu4e-compose/body))
-(add-hook 'mu4e-compose-mode-hook 'mu4e-compose-mode-hook-hydra-setup)
+;; ;; ----------------------------- Compose Mode Hydra ----------------------------
+;; ;; WIP: menu available in compose mode
+
+;; (defhydra hydra-mu4e-compose (:color blue :timeout 10 :hint nil)
+;; "Compose Mode Menu\n\n"
+;; ("q" quit-window "Quit" :column "")
+;; ("a" mail-add-attachment "Add Attachment" :column "")
+;; ("r" message-new-line-and-reformat "Newline and Reformat" :column "")
+;; ("d" message-delete-not-region "Delete Outside Region" :column ""))
+
+;; (defun mu4e-compose-mode-hook-hydra-setup ()
+;; "Create hydra/menu keybinding when entering compose mode."
+;; (local-set-key (kbd "C-c ?") 'hydra-mu4e-compose/body))
+;; (add-hook 'mu4e-compose-mode-hook 'mu4e-compose-mode-hook-hydra-setup)
(provide 'mail-config)
;;; mail-config.el ends here