summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa2025-04-29 15:22:18 +0800
committernoa2025-04-29 15:22:18 +0800
commit4a5957273c4621d83c6c74f269b5ca843f817367 (patch)
treec37465aa405eb6f54d12a8910c49c2f6c15b55d5 /emacs
parentcb9e24049d78fed2eb800c88efaf93e161a8161f (diff)
Configure window dividers
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 94f60fb..3ed89d6 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -843,9 +843,11 @@ With prefix argument TIME, also add the current time."
 (use-package frame
   :hook (after-init . window-divider-mode)
   :custom
-  (window-divider-default-places t))
-
-;;; Unsorted
+  (window-divider-default-places t)
+  (window-divider-default-right-width 1)
+  (window-divider-default-bottom-width 1)
+  :custom-face
+  (window-divider ((t (:inherit vertical-border)))))
 
 ;; Update the calendar.  We want weeks to start on a monday, the first day of the week.  Holidays should be highlighted, and the date format should put the year first.
 (use-package calendar