From 8ffe16ed9a1d6acfa5dc361d70df6dfd2090e9a2 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 16 Sep 2024 15:31:24 -0700 Subject: [PATCH] Suppress Eshell banner message --- thoom-emacs/modules/thoom-eshell.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/thoom-emacs/modules/thoom-eshell.el b/thoom-emacs/modules/thoom-eshell.el index cbabb7d..509b42c 100644 --- a/thoom-emacs/modules/thoom-eshell.el +++ b/thoom-emacs/modules/thoom-eshell.el @@ -23,7 +23,8 @@ (use-package eshell :config (setq eshell-destroy-buffer-when-process-dies t - eshell-visual-commands '()) + eshell-visual-commands '() + eshell-banner-message "") ;; From https://karthinks.com/software/jumping-directories-in-eshell/ (defun eshell/j (&optional regexp)