From 5f0d909aab823512b247808b38d1c33a03585c72 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 1 Oct 2025 17:08:41 +0100 Subject: Set eshell window layout to display-buffer-alist --- emacs-config.org | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'emacs-config.org') diff --git a/emacs-config.org b/emacs-config.org index ff4baff..c3308ea 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1304,6 +1304,16 @@ Set the prompt for eshell. <>) #+end_src +Display eshell in bottom side window. +#+begin_src elisp + (cl-pushnew '("\\*e?shell\\*" + (display-buffer-in-side-window) + (side . bottom) + (slot . -1) + (window-height . 0.5)) + display-buffer-alist) +#+end_src + *** Eshell Prompt :PROPERTIES: :header-args:elisp: :tangle no :noweb-ref eshell-prompt :results none -- cgit