From eec00001a25ded856b289e10ae39f6435b261564 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 3 Oct 2025 19:13:58 +0100 Subject: Add Calendar display settings & move display settings to new section --- emacs-config.org | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/emacs-config.org b/emacs-config.org index d719b26..502ff7a 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -82,6 +82,26 @@ Add advice to enable ~query-replace~ to search the whole buffer or region if sel (advice-add 'query-replace-regexp :around #'+advice-goto-top-no-region) #+end_src +Eshell display settings. +#+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 + +Calendar display settings. +#+begin_src elisp + (cl-pushnew '("Calendar" + (display-buffer-in-side-window) + (side . bottom) + (slot . 1) + (window-height . 0.25)) + display-buffer-alist) +#+end_src + ** Editor Tab behaviour settings. #+begin_src elisp @@ -1326,16 +1346,6 @@ 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