Remove window-divider-mode

This commit is contained in:
James Cherti
2024-11-03 21:22:38 -05:00
parent 82f6c1fe4b
commit ad120a14f5
2 changed files with 6 additions and 2 deletions

View File

@@ -625,6 +625,12 @@ To configure `corfu` and `cape`, add the following to `~/.emacs.d/post-init.el`:
(uniquify-separator "•") (uniquify-separator "•")
(uniquify-after-kill-buffer-p t) (uniquify-after-kill-buffer-p t)
(uniquify-ignore-buffers-re "^\\*")) (uniquify-ignore-buffers-re "^\\*"))
;; Window dividers separate windows visually. Window dividers are bars that can
;; be dragged with the mouse, thus allowing you to easily resize adjacent
;; windows.
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Window-Dividers.html
(add-hook 'after-init-hook #'window-divider-mode)
``` ```
It is also recommended to read the following articles: It is also recommended to read the following articles:

View File

@@ -145,8 +145,6 @@
window-divider-default-places t window-divider-default-places t
window-divider-default-right-width 1) window-divider-default-right-width 1)
(add-hook 'after-init-hook #'window-divider-mode)
;;; Backup files ;;; Backup files
;; Avoid generating backups or lockfiles to prevent creating world-readable ;; Avoid generating backups or lockfiles to prevent creating world-readable