diff options
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 30 |
1 files 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. <<eshell-prompt>>) #+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 |
