diff options
author | noa@gaiwan.org | 2024-06-14 14:38:50 +0000 |
---|---|---|
committer | noa@gaiwan.org | 2024-06-14 14:38:50 +0000 |
commit | 618d274e329b6bea0f5e0f677e7ff0f608d4dc08 (patch) | |
tree | dbd1b12340349fb07975b42704e88481b2d0da8d /emacs | |
parent | c0ec8a4eb601cfdc9ce8226fbf81066ca923f7bd (diff) |
Remove use-package declaration for window divider configuration
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 10 |
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. |