summary refs log tree commit diff
path: root/emacs
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-06-14 14:38:50 +0000
committernoa@gaiwan.org2024-06-14 14:38:50 +0000
commit618d274e329b6bea0f5e0f677e7ff0f608d4dc08 (patch)
treedbd1b12340349fb07975b42704e88481b2d0da8d /emacs
parentc0ec8a4eb601cfdc9ce8226fbf81066ca923f7bd (diff)
Remove use-package declaration for window divider configuration
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 2d81756..387b75b 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -646,12 +646,10 @@ The misspelled word is taken from OVERLAY.  WORD is the corrected word."
           file-name-history))
 (setopt savehist-mode t)
 
-(use-package frame
-  :custom
-  (window-divider-mode t)
-  (window-divider-default-right-width 1)
-  (window-divider-default-bottom-width 1)
-  (window-divider-default-places t))
+(setopt window-divider-mode t)
+(setopt window-divider-default-right-width 1)
+(setopt window-divider-default-bottom-width 1)
+(setopt window-divider-default-places t)
 
 ;; Add prompt indicator to `completing-read-multiple'.
 ;; We display [CRM<separator>], e.g., [CRM,] if the separator is a comma.