From 9a0aeb71866bfece550b34bb0299d3c4bd333ec4 Mon Sep 17 00:00:00 2001 From: John Doty Date: Sat, 31 Jan 2026 18:31:38 +0000 Subject: [PATCH 1/2] [tmux] Fix stale PTY --- .tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 52b7011..4926d85 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -46,3 +46,6 @@ set -a terminal-features "tmux-direct:RGB" # fish! set-option -g default-shell /bin/fish + +# rebind the SSH_TTY environment variable on reconnect +set -ag update-environment "SSH_TTY" From f9e570eb67a2f4b5da526c3dad9068db2cad804b Mon Sep 17 00:00:00 2001 From: John Doty Date: Sat, 31 Jan 2026 18:31:51 +0000 Subject: [PATCH 2/2] [emacs] Better eat --- .emacs.d/init.el | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 60fe291..888f8a5 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1508,6 +1508,15 @@ Do this when you edit your project view." ;; ================================================================= ;; Terminal ;; ================================================================= -(use-package eat :straight t) - +;; (use-package eat :straight t) +(use-package eat + :straight '(eat :type git + :host codeberg + :repo "akib/emacs-eat" + :files ("*.el" ("term" "term/*.el") "*.texi" + "*.ti" ("terminfo/e" "terminfo/e/*") + ("terminfo/65" "terminfo/65/*") + ("integration" "integration/*") + (:exclude ".dir-locals.el" "*-tests.el"))) + :bind (("C-c T" . eat-project))) ;;; init.el ends here