diff options
author | noa | 2025-04-29 15:22:18 +0800 |
---|---|---|
committer | noa | 2025-04-29 15:22:18 +0800 |
commit | 4a5957273c4621d83c6c74f269b5ca843f817367 (patch) | |
tree | c37465aa405eb6f54d12a8910c49c2f6c15b55d5 | |
parent | cb9e24049d78fed2eb800c88efaf93e161a8161f (diff) |
Configure window dividers
-rw-r--r-- | emacs/init.el | 8 |
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 |