diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config.org b/config.org index a9c9dc2..4e05b66 100644 --- a/config.org +++ b/config.org @@ -1975,6 +1975,7 @@ Just a few settings i haven't put into another category yet. #+end_src * Window management +** Exwm #+begin_src elisp (package-ensure 'exwm) (require 'exwm) @@ -2026,4 +2027,11 @@ Just a few settings i haven't put into another category yet. ;; Enable EXWM (exwm-enable) #+end_src - +** Buffer placement +#+begin_src elisp + (add-to-list 'display-buffer-alist + '("\\*Calendar\\*" + (display-buffer-in-side-window) + (side . bottom))) + +#+end_src |