diff options
author | bd <bdunahu@operationnull.com> | 2025-02-26 22:24:32 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-02-26 22:24:32 -0500 |
commit | 03b59932027b42cd8966decd1e82204da525a98e (patch) | |
tree | e174e436c59c4038b2d478f84b858996ce6853a3 /.config/emacs | |
parent | 94bba184f69707f4b3cd95119b3dca735093bef4 (diff) |
add angband, pass-otp, cleanup comments/gitignore
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/modules/bd--exwm.el | 1 | ||||
-rw-r--r-- | .config/emacs/modules/bd--shells.el | 8 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--exwm.el b/.config/emacs/modules/bd--exwm.el index 1b48412..ae5b18d 100644 --- a/.config/emacs/modules/bd--exwm.el +++ b/.config/emacs/modules/bd--exwm.el @@ -88,7 +88,6 @@ that buffer." (defvar new-mode-line nil) (defun set-new-mode-line () - "Return the current value of my-custom-variable for the mode line." (setq new-mode-line (replace-regexp-in-string "%" "%%" diff --git a/.config/emacs/modules/bd--shells.el b/.config/emacs/modules/bd--shells.el index 9a8301f..4ffe8ec 100644 --- a/.config/emacs/modules/bd--shells.el +++ b/.config/emacs/modules/bd--shells.el @@ -52,8 +52,12 @@ allowed." (use-package em-term :config - (add-to-list 'eshell-visual-commands "nethack") - (add-to-list 'eshell-visual-commands "r2") + (mapc (lambda (x) (add-to-list 'eshell-visual-commands x)) + '( + "angband" + "nethack" + "r2" + )) (setopt eshell-destroy-buffer-when-process-dies t)) (use-package em-prompt |